2010-09-26 17:32:53 -04:00
|
|
|
from django.contrib import admin
|
2015-03-08 17:54:05 -07:00
|
|
|
from conservancy.apps.staff.models import Person
|
2010-09-26 17:32:53 -04:00
|
|
|
|
|
|
|
class PersonAdmin(admin.ModelAdmin):
|
|
|
|
list_display = ("username", "formal_name", "casual_name",
|
|
|
|
"currently_employed")
|
|
|
|
list_filter = ["currently_employed"]
|
|
|
|
|
|
|
|
admin.site.register(Person, PersonAdmin)
|