1
0
mirror of https://github.com/django/django.git synced 2024-12-29 12:36:08 +00:00
django/tests/gis_tests/geoapp/sitemaps.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
194 B
Python
Raw Normal View History

2014-03-22 17:31:52 +00:00
from django.contrib.gis.sitemaps import KMLSitemap, KMZSitemap
from .models import City, Country
sitemaps = {
"kml": KMLSitemap([City, Country]),
"kmz": KMZSitemap([City, Country]),
}