Files @ 8b469cff1830
Branch filter:

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

bkuhn
Support display of donation count in fundraiser.

Allow display of a donation count in the fundraiser pages, with an
optional threshold that must be met before it's displayed.
1
2
3
4
5
6
7
from django.contrib import admin
from conservancy.apps.supporters.models import Supporter

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

admin.site.register(Supporter, SupporterAdmin)