Files @ 3cd53e23ae54
Branch filter:

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

bsturmfels
Tune up frontpage news/blog items and term of week, add call out section.
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)