summaryrefslogtreecommitdiff
path: root/app/guides/admin.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/guides/admin.py')
-rw-r--r--app/guides/admin.py37
1 files changed, 27 insertions, 10 deletions
diff --git a/app/guides/admin.py b/app/guides/admin.py
index e424385..7895aba 100644
--- a/app/guides/admin.py
+++ b/app/guides/admin.py
@@ -1,29 +1,34 @@
from django.contrib import admin
+from django.contrib.gis.admin import OSMGeoAdmin
from utils.widgets import LGEntryForm
+from utils.util import get_latlon
from .models import Guide
+
@admin.register(Guide)
-class GuideAdmin(admin.ModelAdmin):
+class GuideAdmin(OSMGeoAdmin):
form = LGEntryForm
- list_display = ('title', 'pub_date', 'enable_comments', 'status')
+ list_display = ('title', 'pub_date', 'enable_comments', 'status', 'post_type')
list_filter = ('pub_date', 'enable_comments', 'status')
prepopulated_fields = {"slug": ('title',)}
fieldsets = (
('Entry', {
'fields': (
'title',
- ('sub_title', 'category'),
+ 'sub_title',
'body_markdown',
- ('pub_date', 'status'),
+ ('pub_date', 'status', 'post_type', 'disclaimer'),
'meta_description',
+ 'featured_image',
'dek',
'tags',
- 'preamble_markdown',
- 'featured_image',
+ 'prologue_markdown',
+ 'epilogue_markdown',
'has_video',
('slug', 'enable_comments'),
+ 'point',
),
'classes': (
'show',
@@ -33,10 +38,7 @@ class GuideAdmin(admin.ModelAdmin):
}),
('meta', {
'fields': (
- 'point',
- 'afterword',
- ('field_notes', 'books'),
- ('essays', 'jrnl'),
+ ('field_notes', 'books','jrnl'),
),
'classes': (
'hide',
@@ -46,5 +48,20 @@ class GuideAdmin(admin.ModelAdmin):
}),
)
+ # options for OSM map Using custom ESRI topo map
+ lat, lon = get_latlon()
+ default_lon = lon
+ default_lat = lat
+ default_zoom = 10
+ units = True
+ scrollable = False
+ map_width = 700
+ map_height = 425
+ map_template = 'gis/admin/osm.html'
+ openlayers_url = '/static/admin/js/OpenLayers.js'
+
class Media:
js = ('image-loader.js', 'next-prev-links.js')
+ css = {
+ "all": ("my_styles.css",)
+ }