/django/contrib/gis/admin/__init__.py
Python | 12 lines | 8 code | 2 blank | 2 comment | 2 complexity | b2604d6581bd891caad14b8fac0d9faa MD5 | raw file
Possible License(s): BSD-3-Clause
- # Getting the normal admin routines, classes, and `site` instance.
- from django.contrib.admin import autodiscover, site, AdminSite, ModelAdmin, StackedInline, TabularInline, HORIZONTAL, VERTICAL
- # Geographic admin options classes and widgets.
- from django.contrib.gis.admin.options import GeoModelAdmin
- from django.contrib.gis.admin.widgets import OpenLayersWidget
- try:
- from django.contrib.gis.admin.options import OSMGeoAdmin
- HAS_OSM = True
- except ImportError:
- HAS_OSM = False