thoughts/admin.py @ 3a51bfa414da

Everything feed is once again unborked, and the templates are cleaner!
author Steve Losh <steve@stevelosh.com>
date Sun, 15 Feb 2009 00:50:20 -0500
parents 5d5a567385bb
children (none)
from stevelosh.thoughts.models import TextThought, LinkThought
from django.contrib import admin

class TextAdmin(admin.ModelAdmin):
    list_display = ('posted', 'title', 'body',)
    search_fields = ('title', 'body',)
    list_filter = ('posted',)
    date_hierarchy = 'posted'
    ordering = ('-posted',)

class LinkAdmin(admin.ModelAdmin):
    list_display = ('url', 'name', 'posted', 'description',)
    search_fields = ('name', 'url', 'description',)
    list_filter = ('posted',)
    date_hierarchy = 'posted'
    ordering = ('-posted',)


admin.site.register(TextThought, TextAdmin)
admin.site.register(LinkThought, LinkAdmin)