+ 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(
+ url='/pomagam/%(path)s', permanent=False)),
+
+ path('chunks/', include('chunks.urls')),