13 lines
486 B
Python
13 lines
486 B
Python
from django.contrib.admin import (
|
|
HORIZONTAL, VERTICAL, AdminSite, ModelAdmin, StackedInline, TabularInline,
|
|
autodiscover, register, site,
|
|
)
|
|
from django.contrib.gis.admin.options import GeoModelAdmin, OSMGeoAdmin
|
|
from django.contrib.gis.admin.widgets import OpenLayersWidget
|
|
|
|
__all__ = [
|
|
'HORIZONTAL', 'VERTICAL', 'AdminSite', 'ModelAdmin', 'StackedInline',
|
|
'TabularInline', 'autodiscover', 'register', 'site',
|
|
'GeoModelAdmin', 'OSMGeoAdmin', 'OpenLayersWidget',
|
|
]
|