mirror of
https://github.com/django/django.git
synced 2025-03-09 08:52:32 +00:00
This reverts commit e0cc36f615f70061e034f5ba3f4e75330f51d3ca. The problem is the following: * With non-gis backends, gis_tests sub apps are not discovered (see runtests.py) * Consequently, the app_label is inferred from the gis_tests AppConfig * Then models with same names in different sub apps conflict because of same model_name/app_label pair.
20 lines
450 B
Python
20 lines
450 B
Python
from django.contrib.gis import admin
|
|
from django.contrib.gis.db import models
|
|
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
|
|
|
|
admin.site.register(City, admin.OSMGeoAdmin)
|