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')),
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(
] + 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}),