diff options
author | luxagraf <sng@luxagraf.net> | 2018-02-05 13:56:00 -0600 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2018-02-05 13:56:00 -0600 |
commit | adcd4671a261aa72d459b691aabb6f2eef2a0cb7 (patch) | |
tree | 5f3e1c497a10e947ba90ab1a1271fa3f1013c990 /app/locations | |
parent | ae7bf08e6c7b5dc9c8f03042f427469eb7dbc216 (diff) |
changed checkin admin to get last check as starting point
Diffstat (limited to 'app/locations')
-rw-r--r-- | app/locations/admin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/locations/admin.py b/app/locations/admin.py index 4a52778..62e86fa 100644 --- a/app/locations/admin.py +++ b/app/locations/admin.py @@ -241,3 +241,6 @@ admin.site.register(Route, RouteAdmin) @admin.register(CheckIn) class CheckInAdmin(OLAdminBase): list_display = ('date', 'location') + # options for OSM map Using custom ESRI topo map + default_lat, default_lon = get_latlon() + default_zoom = 9 |