1
0
mirror of https://github.com/django/django.git synced 2024-11-18 07:26:04 +00:00
django/tests/sitemaps_tests/urls/index_only.py
2016-11-22 18:27:19 -05:00

10 lines
258 B
Python

from django.conf.urls import url
from django.contrib.sitemaps import views
from .http import simple_sitemaps
urlpatterns = [
url(r'^simple/index\.xml$', views.index, {'sitemaps': simple_sitemaps},
name='django.contrib.sitemaps.views.index'),
]