X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/df60910b2d457f031cbe0a153e51e7378c0165d8..4bacdff72c8044d25066ff95719543a763844e11:/src/wolnelektury/urls.py?ds=inline

diff --git a/src/wolnelektury/urls.py b/src/wolnelektury/urls.py
index 376714103..804e69dce 100644
--- a/src/wolnelektury/urls.py
+++ b/src/wolnelektury/urls.py
@@ -53,11 +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/<int:pk>/',  club.views.PayUNotifyView.as_view(), name='club_payu_notify'),
-    path('towarzystwo/', RedirectView.as_view(url='/pomagam/', permanent=False)),
+    path('towarzystwo/', RedirectView.as_view(url='/pomagam/', permanent=False, query_string=True)),
     path('towarzystwo/<path:path>', 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'),
@@ -72,7 +75,6 @@ urlpatterns += [
     path('szukaj/', include('search.urls')),
 
     path('i18n/', include('django.conf.urls.i18n')),
-    path('forum/', include('machina.urls')),
 ]
 
 urlpatterns += [