diff options
author | luxagraf <sng@luxagraf.net> | 2018-06-08 16:31:58 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-06-08 16:31:58 -0500 |
commit | bcb6b23ff8859481233406990a01fd7e97130905 (patch) | |
tree | 50e6c407b7b5f9c6a5de2f6cfe15df84c86d8a4e /app | |
parent | 9b23aa8379f6451d1e1f276aef39b4837d6d97b9 (diff) |
added pub_date to locations list
Diffstat (limited to 'app')
-rw-r--r-- | app/locations/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/locations/admin.py b/app/locations/admin.py index 62e86fa..b538657 100644 --- a/app/locations/admin.py +++ b/app/locations/admin.py @@ -161,7 +161,7 @@ admin.site.register(State, StateAdmin) class LocationAdmin(OSMGeoAdmin): - list_display = ('name', 'slug', 'state') + list_display = ('name', 'slug', 'state', 'pub_date') prepopulated_fields = {'slug': ('name',)} search_fields = ('name', 'state') ordering = ('name',) |