mirror of
https://github.com/Hopiu/django.git
synced 2026-04-06 16:11:00 +00:00
9 lines
258 B
Python
9 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'),
|
|
]
|