diff options
author | luxagraf <sng@luxagraf.net> | 2017-12-14 18:47:45 -0800 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2017-12-14 18:47:45 -0800 |
commit | 83b7318a4672d32ed77cd3f906f43f5ad1cce854 (patch) | |
tree | 457806693c791360ada99dd9b3d19a5dc9712936 /app/guide/admin.py | |
parent | adb5c207bea19cedc400b65bd8cd2c54ca0faba0 (diff) |
archived old apps that I'm not using
Diffstat (limited to 'app/guide/admin.py')
-rw-r--r-- | app/guide/admin.py | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/app/guide/admin.py b/app/guide/admin.py deleted file mode 100644 index dfdf45e..0000000 --- a/app/guide/admin.py +++ /dev/null @@ -1,61 +0,0 @@ -from django.contrib import admin -from guide.models import Guide -from django.contrib.gis.admin import OSMGeoAdmin - - -class GuideAdmin(OSMGeoAdmin): - list_display = ( - 'title', - 'pub_date', - 'template_name', - 'status', - 'location', - 'photo_gallery' - ) - search_fields = ['title', 'body_markdown'] - prepopulated_fields = {"slug": ('title',)} - list_filter = ('pub_date', 'status', 'location__state__country__lux_region', 'location') - fieldsets = ( - ('Note', { - 'fields': ( - 'title', - 'body_markdown', - 'location', - 'pub_date', - 'status', - 'slug', - 'photo_gallery' - ), - 'classes': ( - 'show', - 'extrapretty', - 'wide' - ) - }), - ('Extra', { - 'fields': ( - 'dek', - 'meta_description', - 'template_name', - 'image', - 'thumbnail' - ), - 'classes': ( - 'collapse', - 'wide' - ) - }), - ) - - # options for OSM map Using custom ESRI topo map - default_lon = -9285175 - default_lat = 4025046 - default_zoom = 6 - units = True - scrollable = False - map_width = 700 - map_height = 425 - map_template = 'gis/admin/osm.html' - openlayers_url = '/static/admin/js/OpenLayers.js' - -admin.site.register(Guide, GuideAdmin) |