X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/de4a58ffa2b1268afa1764b8c54a82d96a7875f6..113e9584a18733aabe8a2ec20862eb6f5ed4b62d:/platforma/urls.py diff --git a/platforma/urls.py b/platforma/urls.py index 5ff1b6af..498b5b2e 100644 --- a/platforma/urls.py +++ b/platforma/urls.py @@ -13,9 +13,8 @@ urlpatterns = patterns('', url(r'^$', 'explorer.views.file_list', name='file_list'), url(r'^file/upload', 'explorer.views.file_upload', name='file_upload'), - - url(r'^managment/pull-requests$', 'explorer.views.pull_requests'), - + url(r'^management/pull-requests$', 'explorer.views.pull_requests'), + # Editor panels url(r'^editor/'+PATH_END, 'explorer.views.display_editor', name='editor_view'), url(r'^editor/$', 'explorer.views.file_list', name='editor_base'), @@ -23,6 +22,7 @@ urlpatterns = patterns('', url(r'^file/(?P[^/]+)/print$', 'explorer.views.print_html', name="file_print"), # Admin panel + (r'^admin/filebrowser/', include('filebrowser.urls')), url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/(.*)', admin.site.root),