diff options
Diffstat (limited to 'app/jrnl/admin.py')
-rw-r--r-- | app/jrnl/admin.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/app/jrnl/admin.py b/app/jrnl/admin.py index 7d94b47..580d06f 100644 --- a/app/jrnl/admin.py +++ b/app/jrnl/admin.py @@ -24,13 +24,13 @@ class EntryAdmin(OSMGeoAdmin): search_fields = ['title', 'body_markdown'] prepopulated_fields = {"slug": ('title',)} list_filter = ('pub_date', 'enable_comments', 'status', 'location__state__country__lux_region') - filter_horizontal = ('field_notes',) + filter_horizontal = ('field_notes','books') fieldsets = ( ('Entry', { 'fields': ( 'title', 'body_markdown', - 'body_html', + #'body_html', ('pub_date', 'status'), 'slug', 'point' @@ -49,8 +49,18 @@ class EntryAdmin(OSMGeoAdmin): ('image', 'thumbnail'), 'template_name', 'enable_comments', + ), + }), + ('Extra', { + 'fields': ( 'field_notes', + 'books', ), + 'classes': ( + 'collapse', + 'extrapretty', + 'wide' + ) }), ) # options for OSM map Using custom ESRI topo map |