summaryrefslogtreecommitdiff
path: root/app/unused_apps/people/admin.py
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2020-11-11 21:49:34 -0500
committerluxagraf <sng@luxagraf.net>2020-11-11 21:49:34 -0500
commit199184b3b680bc4c8878bf11a60c0fbf72fb612f (patch)
tree92195ea8a1ba5e61fefca51896c2b8e01cdeaf43 /app/unused_apps/people/admin.py
parent129a8545b520380a8567a4e7405634250f3d7da5 (diff)
removed some things I wasn't using to clean up code base
Diffstat (limited to 'app/unused_apps/people/admin.py')
-rw-r--r--app/unused_apps/people/admin.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/unused_apps/people/admin.py b/app/unused_apps/people/admin.py
new file mode 100644
index 0000000..ea0b463
--- /dev/null
+++ b/app/unused_apps/people/admin.py
@@ -0,0 +1,8 @@
+from django.contrib import admin
+from .models import Person
+
+
+@admin.register(Person)
+class PersonAdmin(admin.ModelAdmin):
+ list_display = ('last_name', 'first_name', 'location_met', )
+