blob: e3566b066e383a4bc25b07526e373b631c1c836c (
plain)
1
2
3
4
5
6
7
8
|
from django.contrib.gis.sitemaps import KMLSitemap, KMZSitemap
from .models import City, Country
sitemaps = {
"kml": KMLSitemap([City, Country]),
"kmz": KMZSitemap([City, Country]),
}
|