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
|
from django.contrib import admin
from django import forms
from django.contrib.contenttypes.admin import GenericStackedInline
from utils.widgets import AdminImageWidget, LGEntryForm
from .models import Post, Trip, Guide
from media.models import LuxImage
from utils.util import get_latlon
@admin.register(Post)
class PostAdmin(admin.ModelAdmin):
form = LGEntryForm
def get_queryset(self, request):
test_model_qs = super(PostAdmin, self).get_queryset(request)
test_model_qs = test_model_qs.prefetch_related('related').prefetch_related('books')
return test_model_qs
def render_change_form(self, request, context, *args, **kwargs):
#context['adminform'].form.fields['featured_image'].queryset = LuxImage.objects.all()[:200]
return super(PostAdmin, self).render_change_form(request, context, *args, **kwargs)
def formfield_for_dbfield(self, db_field, **kwargs):
if db_field.name == 'thumbnail' or db_field.name == 'image':
field = forms.FileField(widget=AdminImageWidget)
elif db_field.name == 'meta_description':
field = forms.CharField(widget=forms.Textarea(attrs={'rows': 4, 'cols': 75}))
field.required = False
else:
field = super(PostAdmin, self).formfield_for_dbfield(db_field, **kwargs)
return field
list_display = ('title', 'site', 'post_type', 'post_topic', 'pub_date', 'status',)
search_fields = ['title', 'body_markdown']
prepopulated_fields = {"slug": ('title',)}
list_filter = ('site', 'post_type', 'pub_date', 'enable_comments', 'status')
filter_horizontal = ('related', 'books', 'field_notes')
fieldsets = (
('Entry', {
'fields': (
('title', 'subtitle'),
'body_markdown',
('featured_image', 'pub_date'),
('dek', 'meta_description'),
('status', 'post_type', 'post_topic'),
('slug', "template_name", 'enable_comments'),
'point',
('related'),
('site', 'trip'),
),
'classes': (
'show',
'extrapretty',
'wide'
)
}
),
('Extras', {
'fields': (
'books',
'field_notes',
('has_code', 'has_video', 'disclaimer',),
'topics',
'prologue_markdown',
'epilogue_markdown',
'originally_published_by',
'originally_published_by_url',
),
'classes': (
'collapse',
)
}),
)
# 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')
#'product-loader.js',
css = {
"all": ("my_styles.css",)
}
@admin.register(Trip)
class TripAdmin(admin.ModelAdmin):
form = LGEntryForm
list_display = ('title', 'order', 'date_started' )
prepopulated_fields = {'slug': ('title',)}
search_fields = ('title',)
fieldsets = (
('Region', {
'fields': (
'title',
'order',
'subtitle',
'body_markdown',
'slug',
'date_started',
'date_ended',
'featured_image'
),
'classes': (
'show',
'extrapretty'
)
}),
)
class Media:
js = ('image-loader.js', 'next-prev-links.js')
css = {
"all": ("my_styles.css",)
}
@admin.register(Guide)
class GuideAdmin(admin.ModelAdmin):
form = LGEntryForm
list_display = ('title', 'is_featured', 'slug' )
prepopulated_fields = {'slug': ('title',)}
search_fields = ('title',)
filter_horizontal = ('posts',)
fieldsets = (
('', {
'fields': (
'title',
'subtitle',
'seo_title',
'body_markdown',
'posts',
('slug', 'status'),
'dek',
'meta_description',
'featured_image',
('is_featured', 'related')
),
'classes': (
'show',
'extrapretty'
)
}),
)
class Media:
js = ('image-loader.js', 'next-prev-links.js')
css = {
"all": ("my_styles.css",)
}
|