X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3d36b15a04d228e79c4c1722a3545eaa14a9fa81..1f58a10a88c18512abc9c84f49a04a18e00fa8c5:/project/urls.py?ds=inline diff --git a/project/urls.py b/project/urls.py index 7a90ed1f..cc433c05 100644 --- a/project/urls.py +++ b/project/urls.py @@ -10,13 +10,13 @@ urlpatterns = patterns('', # Example: url(r'^$', 'explorer.views.file_list', name='file_list'), url(r'^file/(?P[^/]+)/$', 'explorer.views.file_xml', name='file_xml'), - url(r'^html/(?P[^/]+)/$', 'explorer.views.file_html', name='file_html'), url(r'^images/(?P[^/]+)/$', 'explorer.views.folder_images', name='folder_image'), url(r'^images/$', 'explorer.views.folder_images', {'folder': '.'}, name='folder_image_ajax'), # Editor panels - url(r'^editor/(?P[^/]+)/panels/xmleditor$', 'explorer.views.xmleditor_panel', name='xmleditor_panel'), - url(r'^editor/(?P[^/]+)/panels/gallery$', 'explorer.views.gallery_panel', name='gallery_panel'), + url(r'^editor/(?P[^/]+)/panels/xmleditor/$', 'explorer.views.xmleditor_panel', name='xmleditor_panel'), + url(r'^editor/(?P[^/]+)/panels/gallery/$', 'explorer.views.gallery_panel', name='gallery_panel'), + url(r'^editor/(?P[^/]+)/panels/htmleditor/$', 'explorer.views.htmleditor_panel', name='htmleditor_panel'), # Admin panel url(r'^admin/doc/', include('django.contrib.admindocs.urls')),