Files @ 22b5528ae5b0
Branch filter:

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

bkuhn
Note that annual supporters are not auto-renew.

We long ago decided not to auto-renew annual supporters. However, three
different potential supporters mentioned they were unsure, so this note
is added to clarify.
1
2
3
4
5
6
7
8
9
from django.contrib import admin
from conservancy.apps.staff.models import Person

class PersonAdmin(admin.ModelAdmin):
    list_display = ("username", "formal_name", "casual_name",
                    "currently_employed")
    list_filter = ["currently_employed"]

admin.site.register(Person, PersonAdmin)