Files @ d73018440a4d
Branch filter:

Location: website/www/conservancy/apps/supporters/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.
1
2
3
4
5
6
7
from django.contrib import admin
from models import Supporter

class SupporterAdmin(admin.ModelAdmin):
    list_display = ('display_name', 'display_until_date')

admin.site.register(Supporter, SupporterAdmin)