/django/contrib/gis/admin/__init__.py

https://code.google.com/p/mango-py/ · Python · 12 lines · 8 code · 2 blank · 2 comment · 2 complexity · b2604d6581bd891caad14b8fac0d9faa MD5 · raw file

  1. # Getting the normal admin routines, classes, and `site` instance.
  2. from django.contrib.admin import autodiscover, site, AdminSite, ModelAdmin, StackedInline, TabularInline, HORIZONTAL, VERTICAL
  3. # Geographic admin options classes and widgets.
  4. from django.contrib.gis.admin.options import GeoModelAdmin
  5. from django.contrib.gis.admin.widgets import OpenLayersWidget
  6. try:
  7. from django.contrib.gis.admin.options import OSMGeoAdmin
  8. HAS_OSM = True
  9. except ImportError:
  10. HAS_OSM = False