X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/73e3cc6c4b80f1afbfc78fc7ccd6f6cfc90b719c..fd9768648fe3e37115655245f7fe7aba2adcc5e5:/wolnelektury/urls.py diff --git a/wolnelektury/urls.py b/wolnelektury/urls.py index f379c9ca1..ed0228aa3 100644 --- a/wolnelektury/urls.py +++ b/wolnelektury/urls.py @@ -19,7 +19,7 @@ urlpatterns = patterns('', url(r'^sugestia/', include('suggest.urls')), url(r'^lesmianator/', include('lesmianator.urls')), url(r'^przypisy/', include('dictionary.urls')), - url(r'^statystyka/', include('stats.urls')), + url(r'^raporty/', include('reporting.urls')), # Static pages url(r'^mozesz-nam-pomoc/$', 'infopages.views.infopage', {'slug': 'help_us'}, name='help_us'), @@ -45,7 +45,8 @@ urlpatterns = patterns('', {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), url(r'^%s(?P.*)$' % settings.STATIC_URL[1:], 'django.views.static.serve', {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), - url(r'^$', 'django.views.generic.simple.redirect_to', {'url': 'katalog/'}), + url(r'^$', 'django.views.generic.simple.redirect_to', {'url': 'katalog/', + 'permanent': False}), url(r'^i18n/', include('django.conf.urls.i18n')), )