X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2422020bc864b75f31c215b34692468cc03ce92..1ca6872afcca0bb6fb4c0c11fdad3b760a2362a1:/apps/catalogue/urls.py diff --git a/apps/catalogue/urls.py b/apps/catalogue/urls.py index 43209198b..194015ae4 100644 --- a/apps/catalogue/urls.py +++ b/apps/catalogue/urls.py @@ -14,8 +14,10 @@ SLUG = r'[a-z0-9-]*' urlpatterns = patterns('picture.views', # pictures - currently pictures are coupled with catalogue, hence the url is here - url(r'^obraz/?$', 'picture_list'), - url(r'^obraz/(?P%s)/?$' % SLUG, 'picture_detail') + url(r'^obraz/?$', 'picture_list_thumb'), + url(r'^obraz/(?P%s).html$' % SLUG, 'picture_viewer', name='picture_viewer'), + url(r'^obraz/(?P%s)/?$' % SLUG, 'picture_detail'), + ) urlpatterns += patterns('',