mirror of
https://github.com/django/django.git
synced 2025-03-13 10:50:55 +00:00
Fixed #21137 -- Corrected ULRconf include example.
Thanks marfire for the report.
This commit is contained in:
parent
fd8d7db4d7
commit
77f6b468e5
@ -383,8 +383,8 @@ the suffixes that differ::
|
||||
|
||||
from django.conf.urls import include, patterns, url
|
||||
|
||||
urlpatterns = patterns('wiki.views',
|
||||
url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/', include(patterns('',
|
||||
urlpatterns = patterns('',
|
||||
url(r'^(?P<page_slug>\w+)-(?P<page_id>\w+)/', include(patterns('wiki.views',
|
||||
url(r'^history/$', 'history'),
|
||||
url(r'^edit/$', 'edit'),
|
||||
url(r'^discuss/$', 'discuss'),
|
||||
|
Loading…
x
Reference in New Issue
Block a user