diff options
author | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-11-11 21:49:34 -0500 |
commit | 199184b3b680bc4c8878bf11a60c0fbf72fb612f (patch) | |
tree | 92195ea8a1ba5e61fefca51896c2b8e01cdeaf43 /app/people/admin.py | |
parent | 129a8545b520380a8567a4e7405634250f3d7da5 (diff) |
removed some things I wasn't using to clean up code base
Diffstat (limited to 'app/people/admin.py')
-rw-r--r-- | app/people/admin.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/app/people/admin.py b/app/people/admin.py deleted file mode 100644 index ea0b463..0000000 --- a/app/people/admin.py +++ /dev/null @@ -1,8 +0,0 @@ -from django.contrib import admin -from .models import Person - - -@admin.register(Person) -class PersonAdmin(admin.ModelAdmin): - list_display = ('last_name', 'first_name', 'location_met', ) - |