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