Files @ 13bcc6986f25
Branch filter:

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

bkuhn
Update public ack for last week and a half.

There needs be to an automated process for this, but there's none yet.
1
2
3
4
5
6
7
8
9
from django.contrib import admin
from 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)