- # 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('django.views.generic.simple',
+ # old static pages - redirected
+ url(r'^szukaj/$', 'redirect_to',
+ {'url': '/szukaj/', 'query_string': True}),
+)
+
+urlpatterns += patterns('catalogue.views',