Added some spacing to the thoughts.
    
        | author | Steve Losh <steve@stevelosh.com> | 
    
        | date | Thu, 12 Feb 2009 14:02:55 -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)