summaryrefslogtreecommitdiff
path: root/app/jrnl/admin.py
blob: e71b7335fd41d53282474c3c59d60407c9fb204b (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
from django.contrib import admin
from django import forms
from django.contrib.gis.admin import OSMGeoAdmin

from utils.widgets import AdminImageWidget, LGEntryForm
from .models import Entry, HomepageCurrator

from photos.forms import GalleryForm


@admin.register(Entry)
class EntryAdmin(OSMGeoAdmin):
    form = LGEntryForm

    def formfield_for_dbfield(self, db_field, **kwargs):
        if db_field.name == 'thumbnail' or db_field.name == 'image':
            field = forms.FileField(widget=AdminImageWidget)
        else:
            field = super(EntryAdmin, self).formfield_for_dbfield(db_field, **kwargs)
        return field

    list_display = ('title', 'pub_date', 'template_name', 'status', 'location', 'photo_gallery')
    search_fields = ['title', 'body_markdown']
    prepopulated_fields = {"slug": ('title',)}
    list_filter = ('pub_date', 'enable_comments', 'status', 'location__state__country__lux_region')
    fieldsets = (
        ('Entry', {
            'fields': (
                'title',
                'body_markdown',
                'body_html',
                ('pub_date', 'status'),
                'slug',
                'point'
            ),
            'classes': (
                'show',
                'extrapretty',
                'wide'
            )
        }
        ),
        ('Formatting data', {
            'fields': (
                'dek',
                'meta_description',
                ('image', 'thumbnail'),
                'template_name',
                'enable_comments',
            ),
        }),
    )
    # 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.register(HomepageCurrator)
class HomepageCurratorAdmin(admin.ModelAdmin):
    form = GalleryForm
    filter_horizontal = ('popular',)
    pass