X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/08bd2b6b6557481ecbb64b2f07db0d3d9784d9bb..76849e4b3dcc3305edbe86b794b04a0bf4a8467c:/apps/catalogue/urls.py diff --git a/apps/catalogue/urls.py b/apps/catalogue/urls.py index 7c1109008..53928589d 100644 --- a/apps/catalogue/urls.py +++ b/apps/catalogue/urls.py @@ -14,9 +14,9 @@ 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_thumb', name='picture_list_thumb'), + 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'), + url(r'^obraz/(?P%s)/$' % SLUG, 'picture_detail'), )