mirror of
https://github.com/Hopiu/django.git
synced 2026-03-23 17:30:27 +00:00
7 lines
209 B
Python
7 lines
209 B
Python
from django.contrib.gis.sitemaps import KMLSitemap, KMZSitemap
|
|
|
|
from .models import City, Country
|
|
|
|
sitemaps = {'kml': KMLSitemap([City, Country]),
|
|
'kmz': KMZSitemap([City, Country]),
|
|
}
|