~canonical-django/canonical-django/project-template

« back to all changes in this revision

Viewing changes to trunk/python-packages/django/contrib/gis/admin/__init__.py

  • Committer: Matthew Nuzum
  • Date: 2008-11-13 05:46:03 UTC
  • Revision ID: matthew.nuzum@canonical.com-20081113054603-v0kvr6z6xyexvqt3
adding to version control

Show diffs side-by-side

added added

removed removed

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