- # pictures - currently pictures are coupled with catalogue, hence the url is here
- url(r'^obraz/?$', 'picture_list'),
- url(r'^obraz/(?P<picture>%s)/?$' % SLUG, 'picture_detail')
- ) + \
- patterns('catalogue.views',
+ # pictures - currently pictures are coupled with catalogue, hence the url is here
+ url(r'^obraz/?$', 'picture_list'),
+ url(r'^obraz/(?P<picture>%s)/?$' % SLUG, 'picture_detail')
+)
+
+urlpatterns += patterns('',
+ # old search page - redirected
+ url(r'^szukaj/$', RedirectView.as_view(
+ url='/szukaj/', query_string=True)),
+)
+
+urlpatterns += patterns('catalogue.views',