X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/165161a173154072eb7b999386a13562e110bd0a..a94e848fd865f0a887850e4858dab64c426b10db:/src/wolnelektury/urls.py diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py index 4de5f4909..3d420cec6 100644 --- a/src/wolnelektury/urls.py +++ b/src/wolnelektury/urls.py @@ -44,6 +44,7 @@ urlpatterns += [ path('wesprzyj/', include('funding.urls')), path('ankieta/', include('polls.urls')), path('biblioteki/', include('libraries.urls')), + path('pinezki/', include('references.urls')), path('newsletter/', include('newsletter.urls')), path('formularz/', include('forms_builder.forms.urls')), path('isbn/', include('isbn.urls')), @@ -53,6 +54,7 @@ urlpatterns += [ path('paypal/', include('paypal.urls')), path('powiadomienie/', include('push.urls')), path('pomagam/', include('club.urls')), + path('szkola-', include('education.urls')), path('towarzystwo/notify//', club.views.PayUNotifyView.as_view(), name='club_payu_notify'), path('towarzystwo/', RedirectView.as_view(url='/pomagam/', permanent=False, query_string=True)), path('towarzystwo/', RedirectView.as_view( @@ -74,13 +76,12 @@ urlpatterns += [ path('szukaj/', include('search.urls')), path('i18n/', include('django.conf.urls.i18n')), - path('forum/', include('machina.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( @@ -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' % settings.MEDIA_URL[1:], django.views.static.serve, {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),