Files @ d73018440a4d
Branch filter:

Location: website/www/conservancy/apps/blog/admin.py

bkuhn
Initial hack at a fundraising goal application.

This simple application will simply store the code name and the to goal
of each fundraiser. The so_far number will likely just be updated by
some external script, modifying the appropriate entry in the SQL
database.
from django.contrib import admin
from models import EntryTag, Entry

class EntryTagAdmin(admin.ModelAdmin):
    prepopulated_fields = {'slug': ('label',)}

admin.site.register(EntryTag, EntryTagAdmin)

class EntryAdmin(admin.ModelAdmin):
    list_display = ('pub_date', 'headline', 'author')
    list_filter = ['pub_date']
    date_hierarchy = 'pub_date'
    search_fields = ['headline', 'summary', 'body']
    prepopulated_fields = {'slug': ("headline",)}
    filter_horizontal = ('tags',)


admin.site.register(Entry, EntryAdmin)