X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/2f9cb34a07fcd98effda2fa900e48c31813f14c8..d4236cad86ad81e88673a6b4e08af6d7b1b0064a:/apps/wiki/urls.py diff --git a/apps/wiki/urls.py b/apps/wiki/urls.py index ee13b850..69472103 100644 --- a/apps/wiki/urls.py +++ b/apps/wiki/urls.py @@ -2,22 +2,17 @@ from django.conf.urls import patterns, url -urlpatterns = patterns('wiki.views', +urlpatterns = patterns( + 'wiki.views', url(r'^edit/(?P[^/]+)/$', 'editor', name="wiki_editor"), - url(r'^readonly/(?P[^/]+)/$', - 'editor_readonly', name="wiki_editor_readonly"), - url(r'^gallery/(?P[^/]+)/$', 'gallery', name="wiki_gallery"), url(r'^history/(?P\d+)/$', 'history', name="wiki_history"), - url(r'^rev/(?P\d+)/$', - 'revision', name="wiki_revision"), - url(r'^text/(?P\d+)/$', 'text', name="wiki_text"),