Files @ d73018440a4d
Branch filter:

Location: website/www/conservancy/apps/events/admin.py - annotation

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 EventTag, Event, EventMedia

admin.site.register(EventTag)

class EventAdmin(admin.ModelAdmin):
    list_display = ("title", "date", "date_tentative", "location")
    list_filter = ['date']
    date_hierarchy = 'date'
    search_fields = ["title", "description", "earth_location"]
    prepopulated_fields = {'slug' : ("title",) }

admin.site.register(Event, EventAdmin)

class EventMediaAdmin(admin.ModelAdmin):
    list_display = ("event", "format", "novel")

admin.site.register(EventMedia, EventMediaAdmin)