X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/165161a173154072eb7b999386a13562e110bd0a..6535d2e28106edd90589a6a2376cf52a796adf3e:/src/wolnelektury/urls.py

diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py
index 4de5f4909..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/<int:pk>/',  club.views.PayUNotifyView.as_view(), name='club_payu_notify'),
     path('towarzystwo/', RedirectView.as_view(url='/pomagam/', permanent=False, query_string=True)),
     path('towarzystwo/<path:path>', RedirectView.as_view(
@@ -74,7 +75,6 @@ urlpatterns += [
     path('szukaj/', include('search.urls')),
 
     path('i18n/', include('django.conf.urls.i18n')),
-    path('forum/', include('machina.urls')),
 ]
 
 urlpatterns += [
@@ -106,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<path:path>' % settings.MEDIA_URL[1:], django.views.static.serve,
            {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),