X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/05f8cc4122caa9cc40e1df6e412b0dcfab7c6d40..38343a3fc11f5509c8522fec94c0ae7085b7244f:/project/urls.py diff --git a/project/urls.py b/project/urls.py index e3399662..c3b14c87 100644 --- a/project/urls.py +++ b/project/urls.py @@ -8,7 +8,9 @@ admin.autodiscover() urlpatterns = patterns('', # Example: - # (r'^platforma/', include('platforma.foo.urls')), + 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'), # Admin panel url(r'^admin/doc/', include('django.contrib.admindocs.urls')),