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(
] + 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}),