1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
from django.contrib import admin
from django.contrib.gis.admin import OSMGeoAdmin
from projects.models.base import Project
from projects.models.fiveby import FiveBy
from projects.models.natparks import NationalParks
from projects.models.gifs import AnimatedGif
class ProjectAdmin(OSMGeoAdmin):
list_display = ('title', 'pub_date', 'status',)
search_fields = ['title', 'body_markdown']
prepopulated_fields = {"slug": ('title',)}
list_filter = ('pub_date', 'status')
fieldsets = (
('Project', {
'fields': (
'title',
'subtitle',
'lede',
'pub_date',
'model_name',
('status', 'image'),
'slug',
),
'classes': (
'show',
'extrapretty',
'wide'
)
}),
)
class Media:
js = ['/media/admin/custom/model.js']
class FiveByAdmin(OSMGeoAdmin):
list_display = ('title', 'pub_date', 'status',)
search_fields = ['title']
prepopulated_fields = {"slug": ('title',)}
list_filter = ('pub_date', 'status')
fieldsets = (
('Project', {'fields': ('title', 'lede', 'pub_date', 'status', ('image', 'videoh264', 'videoogg'), 'slug', ('vimeo_link', 'youtube_link'), ('point', 'location', 'region')), 'classes': ('show', 'extrapretty', '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'
class NationalParksAdmin(OSMGeoAdmin):
list_display = ('unit_name', 'type', 'state', 'name', 'visited', 'size')
list_filter = ('state', 'type')
search_fields = ['name']
fieldsets = (
('Project', {
'fields': (
'name',
'tag_line',
('state', 'visited'),
'dek',
'date_visited_begin',
'date_visited_end',
'mpoly',
'image',
('post', 'gallery'),
('url', 'size', 'fee', 'camping_fee', 'date_park_created'),
'zoom'
),
'classes': (
'show',
'extrapretty',
'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'
class AnimatedGifAdmin(admin.ModelAdmin):
list_display = ('title', 'date_created')
search_fields = ['title']
fieldsets = (
(None, {
'fields': (
'title',
'gif',
'date_created',
'slug',
'music_ogg',
'music_mp3'
)
}),
)
admin.site.register(AnimatedGif, AnimatedGifAdmin)
admin.site.register(Project, ProjectAdmin)
admin.site.register(FiveBy, FiveByAdmin)
admin.site.register(NationalParks, NationalParksAdmin)
|