diff options
author | luxagraf <sng@luxagraf.net> | 2015-12-01 23:09:54 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-12-01 23:09:54 -0500 |
commit | 44a24b136e00958176fbe63bb302536a59658bbf (patch) | |
tree | 6fb94bb7056bb43ce4b0fe156cb24b1e10903907 /app/jrnl | |
parent | eaa66a20d68b358a77c4cf14d175a814afc4589d (diff) |
tweaked the new admin styling, spacing was a bit much for me.
Diffstat (limited to 'app/jrnl')
-rw-r--r-- | app/jrnl/admin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/jrnl/admin.py b/app/jrnl/admin.py index da4bae3..c19f972 100644 --- a/app/jrnl/admin.py +++ b/app/jrnl/admin.py @@ -26,7 +26,7 @@ class EntryAdmin(OSMGeoAdmin): field = super(EntryAdmin, self).formfield_for_dbfield(db_field, **kwargs) return field - list_display = ('title', 'pub_date', 'template_name', 'status', 'region', 'location', 'photo_gallery') + list_display = ('title', 'pub_date', 'template_name', 'status', 'location', 'photo_gallery') search_fields = ['title', 'body_markdown'] prepopulated_fields = {"slug": ('title',)} list_filter = ('pub_date', 'enable_comments', 'status', 'location__state__country__lux_region') |