X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a23dbb7035ceaf340540f9db370aa2292eddfe4e..1e9113af163a3d002b0b9c3e8c339f22af5b848a:/apps/catalogue/urls.py diff --git a/apps/catalogue/urls.py b/apps/catalogue/urls.py index 55ced66ff..53928589d 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', name='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('',