1
0
mirror of https://github.com/django/django.git synced 2025-01-04 23:46:09 +00:00
django/tests/gis_tests/geoadmin_deprecated/models.py
Giannis Adamopoulos 4555aa0a48 Fixed #27674 -- Deprecated GeoModelAdmin and OSMGeoAdmin.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2021-09-17 08:56:16 +02:00

22 lines
525 B
Python

from django.contrib.gis.db import models
from django.test import ignore_warnings
from django.utils.deprecation import RemovedInDjango50Warning
from ..admin import admin
class City(models.Model):
name = models.CharField(max_length=30)
point = models.PointField()
class Meta:
app_label = 'geoadmini_deprecated'
def __str__(self):
return self.name
site = admin.AdminSite(name='admin_gis')
with ignore_warnings(category=RemovedInDjango50Warning):
site.register(City, admin.OSMGeoAdmin)