mirror of
https://github.com/Hopiu/django.git
synced 2026-04-28 10:44:50 +00:00
8 lines
194 B
Python
8 lines
194 B
Python
from django.contrib.gis.sitemaps import KMLSitemap, KMZSitemap
|
|
|
|
from .models import City, Country
|
|
|
|
sitemaps = {
|
|
"kml": KMLSitemap([City, Country]),
|
|
"kmz": KMZSitemap([City, Country]),
|
|
}
|