diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-24 10:10:09 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-01-24 10:10:09 +0000 |
commit | c488ad804bcc7c3febee3bea2089b86bbe419bbb (patch) | |
tree | e610f4f291cf3665e5ac481999ad27abc153d311 /ctrack/organisations/admin.py | |
parent | 7a65d7e12c30992ceb6b94acc55d2ee152687b6e (diff) |
Played about with CSS/templates and tinkered with admin
Diffstat (limited to '')
-rw-r--r-- | ctrack/organisations/admin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ctrack/organisations/admin.py b/ctrack/organisations/admin.py index 686cb30..f8ad2aa 100644 --- a/ctrack/organisations/admin.py +++ b/ctrack/organisations/admin.py @@ -15,6 +15,7 @@ class AddressInLine(admin.StackedInline): class OrganisationAdmin(admin.ModelAdmin): inlines = [AddressInLine,] + list_display = ('slug', 'name') # Register your models here. |