X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/5c14b2f1216cf266efd63f4de84e3f83bb99c9ff..84a3f7f335bf15b4671cc56c26d243bf539a9536:/src/wolnelektury/urls.py?ds=sidebyside diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py index f71b02ba8..6208d1911 100644 --- a/src/wolnelektury/urls.py +++ b/src/wolnelektury/urls.py @@ -53,6 +53,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( @@ -105,7 +106,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}),