1
0
mirror of https://github.com/django/django.git synced 2025-01-04 07:26:38 +00:00
django/tests/gis_tests/geoadmin/models.py
2015-05-15 09:20:04 -04:00

22 lines
512 B
Python

from django.contrib.gis import admin
from django.contrib.gis.db import models
from django.contrib.gis.gdal import HAS_GDAL
from django.utils.encoding import python_2_unicode_compatible
@python_2_unicode_compatible
class City(models.Model):
name = models.CharField(max_length=30)
point = models.PointField()
objects = models.GeoManager()
class Meta:
app_label = 'geoadmin'
def __str__(self):
return self.name
if HAS_GDAL:
admin.site.register(City, admin.OSMGeoAdmin)