summaryrefslogtreecommitdiff
path: root/app/locations/admin.py
blob: 1938336ad77a520c961f6272ff3708118ece1788 (plain)
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
from django.contrib import admin
from django.contrib.gis.admin import OSMGeoAdmin
from locations.models import Region, Country, Location, State, Route


class RegionAdmin(OSMGeoAdmin):
    list_display = ('name', 'slug')
    prepopulated_fields = {'slug': ('name',)}
    search_fields = ('name',)
    ordering = ('name',)
    save_as = True
    search_fields = ['name']
    list_select_related = True
    fieldsets = (
        ('Region', {
            'fields': (
                'name',
                'slug',
                'pub_date'
            ),
            'classes': (
                'show',
                'extrapretty'
            )
        }),
        ('Editable Map View', {
            'fields': ('geometry',),
            'classes': (
                'show',
                '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(Region, RegionAdmin)


class CountryAdmin(OSMGeoAdmin):
    list_display = ('name', 'pop2005', 'region', 'subregion')
    search_fields = ('name',)
    ordering = ('name',)
    list_filter = ('visited', 'region', 'subregion')
    save_as = True
    search_fields = ['name', 'iso2', 'iso3', 'subregion', 'region']
    list_select_related = True
    fieldsets = (
        ('Country Attributes', {
            'fields': (
                'name',
                'pop2005',
                'slug',
                'zoom_level',
                'visited'
            ),
            'classes': (
                'show',
                'extrapretty'
            )
        }),
        ('Country Codes', {
            'fields': (
                'region',
                'subregion',
                'iso2',
                'iso3',
                'un',
            ),
            'classes': ('collapse',)
        }),
        ('Area and Coordinates', {
            'fields': (
                'area',
                'lat',
                'lon',
            ),
            'classes': (
                'collapse',
                'wide'
            )
        }),
        ('Editable Map View', {
            'fields': ('geometry',),
            'classes': (
                'show',
                '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(Country, CountryAdmin)


class StateAdmin(OSMGeoAdmin):
    list_display = ('name', 'code', 'slug', 'country')
    prepopulated_fields = {'slug': ('name',)}
    search_fields = ('name', 'country')
    ordering = ('name',)
    save_as = True
    search_fields = ['name']
    list_select_related = True
    fieldsets = (
        ('Location', {
            'fields': (
                'name',
                'slug',
                'code',
                'pub_date',
                'country'
            ),
            'classes': (
                'show',
                'extrapretty'
            )
        }),
        ('Editable Map View', {
            'fields': ('geometry',),
            'classes': (
                'show',
                '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(State, StateAdmin)


class LocationAdmin(OSMGeoAdmin):
    list_display = ('name', 'slug', 'state')
    prepopulated_fields = {'slug': ('name',)}
    search_fields = ('name', 'state')
    ordering = ('name',)
    save_as = True
    search_fields = ['name']
    list_select_related = True
    fieldsets = (
        ('Location', {
            'fields': (
                'name',
                'slug',
                'pub_date',
                'state'
            ),
            'classes': ('show', 'extrapretty')
        }),
        ('Editable Map View', {
            'fields': ('geometry',),
            'classes': ('show', '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(Location, LocationAdmin)


class RouteAdmin(OSMGeoAdmin):
    list_display = ('name', 'slug')
    prepopulated_fields = {'slug': ('name',)}
    search_fields = ('name',)
    ordering = ('name',)
    save_as = True
    search_fields = ['name']
    list_select_related = True
    fieldsets = (
        ('Location', {
            'fields': (
                'name',
                'slug',
                'pub_date',
                'template_var_name',
                'zoom'
            ),
            'classes': ('show', 'extrapretty')
        }),
        ('Editable Map View', {
            'fields': ('geometry',),
            'classes': ('show', '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(Route, RouteAdmin)