mirror of
https://github.com/Hopiu/django.git
synced 2026-05-02 20:54:44 +00:00
10 lines
258 B
Python
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'),
|
||
|
|
]
|