X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ac58d34d34f2290f75e05b11c4c1919cec163375..a9b45b86d91d95987e15f5113695d7c27e6d66a2:/src/wolnelektury/urls.py diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py index 3ba36dae9..6208d1911 100644 --- a/src/wolnelektury/urls.py +++ b/src/wolnelektury/urls.py @@ -8,6 +8,7 @@ from django.views.generic import RedirectView import django.views.static from annoy.utils import banner_exempt import catalogue.views +import club.views import picture.views from . import views @@ -29,6 +30,7 @@ urlpatterns = [ ] urlpatterns += [ + path('eksperymenty/', include('experiments.urls')), path('katalog/', include('catalogue.urls')), path('opds/', include('opds.urls')), path('sugestia/', include('suggest.urls')), @@ -46,15 +48,18 @@ urlpatterns += [ path('formularz/', include('forms_builder.forms.urls')), path('isbn/', include('isbn.urls')), path('messaging/', include('messaging.urls')), - - path('paypal/app-form/', RedirectView.as_view( - url='/towarzystwo/?app=1', permanent=False)), - path('towarzystwo/dolacz/', RedirectView.as_view( - url='/towarzystwo/', permanent=False)), - + path('re/', include('redirects.urls')), + path('stats/', include('stats.urls')), path('paypal/', include('paypal.urls')), path('powiadomienie/', include('push.urls')), - path('towarzystwo/', include('club.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( + url='/pomagam/%(path)s', permanent=False)), + + path('chunks/', include('chunks.urls')), # Admin panel path('admin/catalogue/book/import', catalogue.views.import_book, name='import_book'), @@ -70,7 +75,6 @@ urlpatterns += [ path('szukaj/', include('search.urls')), path('i18n/', include('django.conf.urls.i18n')), - path('forum/', include('machina.urls')), ] urlpatterns += [ @@ -102,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}),