X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/38343a3fc11f5509c8522fec94c0ae7085b7244f..34672fb6ded3a27e2b61959d7c5af184e3180ab9:/project/urls.py diff --git a/project/urls.py b/project/urls.py index c3b14c87..47a42748 100644 --- a/project/urls.py +++ b/project/urls.py @@ -10,8 +10,12 @@ 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'^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'), + + url(r'^panels/xmleditor$', 'django.views.generic.simple.direct_to_template', + {'template': 'explorer/panels/xmleditor.html'}, name='xmleditor'), # Admin panel url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/(.*)', admin.site.root),