mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			488 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			488 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.contrib.gis.db import models
 | |
| from django.utils.encoding import python_2_unicode_compatible
 | |
| 
 | |
| from ..admin import admin
 | |
| 
 | |
| 
 | |
| @python_2_unicode_compatible
 | |
| class City(models.Model):
 | |
|     name = models.CharField(max_length=30)
 | |
|     point = models.PointField()
 | |
| 
 | |
|     class Meta:
 | |
|         app_label = 'geoadmin'
 | |
|         required_db_features = ['gis_enabled']
 | |
| 
 | |
|     def __str__(self):
 | |
|         return self.name
 | |
| 
 | |
| 
 | |
| site = admin.AdminSite(name='admin_gis')
 | |
| site.register(City, admin.OSMGeoAdmin)
 |