summaryrefslogtreecommitdiff
path: root/app/sightings/admin.py
blob: f07afc3b1a7630329468c35b89dce53e631b3f93 (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
from django.contrib import admin
from django.contrib.gis.admin import OSMGeoAdmin
from .models import APClass, AP, Sighting

from photos.forms import GalleryForm
from utils.util import get_latlon
from utils.widgets import CustomSelectMultiple, LGEntryForm
from .forms import SightingsForm
from django.contrib.admin.options import FORMFIELD_FOR_DBFIELD_DEFAULTS

class GalleryFormPlus(GalleryForm):
    def __init__(self, *args, **kwargs):
        super(GalleryFormPlus, self).__init__(*args, **kwargs)
        self.base_fields['seen_by'].widget = CustomSelectMultiple()
    
    class Meta:
        model = Sighting
        fields = '__all__' 


@admin.register(APClass)
class APClassAdmin(admin.ModelAdmin):
    list_display = ('common_name', 'scientific_name', 'kind')
    list_filter = ('kind',)


class SightingInline(OSMGeoAdmin, admin.StackedInline):
    model = Sighting
    extra = 1

    def __init__(self, parent_model, admin_site):
        self.admin_site = admin_site
        self.parent_model = parent_model
        self.opts = self.model._meta
        self.has_registered_model = admin_site.is_registered(self.model)
        overrides = FORMFIELD_FOR_DBFIELD_DEFAULTS.copy()
        overrides.update(self.formfield_overrides)
        self.formfield_overrides = overrides
        if self.verbose_name is None:
            self.verbose_name = self.model._meta.verbose_name
        if self.verbose_name_plural is None:
            self.verbose_name_plural = self.model._meta.verbose_name_plural


@admin.register(AP)
class APAdmin(admin.ModelAdmin):
    form = LGEntryForm
    inlines = [
        SightingInline,
    ]
    list_display = ('pk', 'common_name', 'scientific_name', 'kind', 'code', 'apclass')
    list_filter = ('apclass__kind', 'apclass')
    search_fields = ['common_name', 'scientific_name']

    class Media:
        js = ('image-loader.js', 'next-prev-links.js')


@admin.register(Sighting)
class SightingAdmin(OSMGeoAdmin):
    form = SightingsForm
    list_filter = (('location', admin.RelatedOnlyFieldListFilter),)
    list_display = ('ap', 'location')
    # options for OSM map Using custom ESRI topo map
    lat, lon = get_latlon()
    default_lon = lon
    default_lat = lat
    default_zoom = 13
    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 = ('next-prev-links.js',)