fix
[wolnelektury.git] / src / wolnelektury / urls.py
index 804e69d..a95f690 100644 (file)
@@ -44,6 +44,7 @@ urlpatterns += [
     path('wesprzyj/', include('funding.urls')),
     path('ankieta/', include('polls.urls')),
     path('biblioteki/', include('libraries.urls')),
+    path('mapa/', include('references.urls')),
     path('newsletter/', include('newsletter.urls')),
     path('formularz/', include('forms_builder.forms.urls')),
     path('isbn/', include('isbn.urls')),
@@ -80,7 +81,7 @@ urlpatterns += [
 urlpatterns += [
     # old static pages - redirected
     path('1procent/', RedirectView.as_view(
-        url='http://nowoczesnapolska.org.pl/wesprzyj_nas/', permanent=True)),
+        url='https://fundacja.wolnelektury.pl/pomoz-nam/1-procent/', permanent=True)),
     path('epub/', RedirectView.as_view(
         url='/katalog/lektury/', permanent=False)),
     path('mozesz-nam-pomoc/', RedirectView.as_view(
@@ -106,7 +107,12 @@ if settings.DEBUG:
     ] + urlpatterns
 
 if settings.DEBUG:
+    import functools
+    from django.views.defaults import page_not_found, server_error
     urlpatterns += [
+        path('error/500/', server_error),
+        path('error/404/', functools.partial(page_not_found, exception=None)),
+
         # Static files
         path('%s<path:path>' % settings.MEDIA_URL[1:], django.views.static.serve,
            {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),