X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/534be56c67fa79cded7631a0aeeae62859ba4513..66ab038f6f74eb2ebcaf945cf85bb0d7813f791c:/src/wolnelektury/urls.py diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py index e6c407a96..804e69dce 100644 --- a/src/wolnelektury/urls.py +++ b/src/wolnelektury/urls.py @@ -53,10 +53,14 @@ 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( 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'), path('admin/catalogue/picture/import', picture.views.import_picture, name='import_picture'), @@ -71,7 +75,6 @@ urlpatterns += [ path('szukaj/', include('search.urls')), path('i18n/', include('django.conf.urls.i18n')), - path('forum/', include('machina.urls')), ] urlpatterns += [