0
0
mirror of https://github.com/django/django.git synced 2024-11-30 23:20:50 +01: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 18:31:52 +01:00
from django.contrib.gis.sitemaps import KMLSitemap, KMZSitemap
from .models import City, Country
sitemaps = {
"kml": KMLSitemap([City, Country]),
"kmz": KMZSitemap([City, Country]),
}