-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
# Authentication
path('uzytkownik/', views.user_settings, name='user_settings'),
# Authentication
path('uzytkownik/', views.user_settings, name='user_settings'),
- path('uzytkownik/login/', banner_exempt(views.LoginFormView()), name='login'),
- path('uzytkownik/signup/', banner_exempt(views.RegisterFormView()), name='register'),
+ path('uzytkownik/login/', views.WLLoginView.as_view(), name='login'),
+ path('uzytkownik/signup/', views.WLRegisterView.as_view(), name='register'),
path('uzytkownik/logout/', views.logout_then_redirect, name='logout'),
path('uzytkownik/logout/', views.logout_then_redirect, name='logout'),
path('uzytkownik/social/signup/', banner_exempt(views.SocialSignupView.as_view()), name='socialaccount_signup'),
]
path('uzytkownik/social/signup/', banner_exempt(views.SocialSignupView.as_view()), name='socialaccount_signup'),
]
path('wesprzyj/', include('funding.urls')),
path('ankieta/', include('polls.urls')),
path('biblioteki/', include('libraries.urls')),
path('wesprzyj/', include('funding.urls')),
path('ankieta/', include('polls.urls')),
path('biblioteki/', include('libraries.urls')),
path('newsletter/', include('newsletter.urls')),
path('formularz/', include('forms_builder.forms.urls')),
path('newsletter/', include('newsletter.urls')),
path('formularz/', include('forms_builder.forms.urls')),
path('messaging/', include('messaging.urls')),
path('re/', include('redirects.urls')),
path('stats/', include('stats.urls')),
path('paypal/', include('paypal.urls')),
path('powiadomienie/', include('push.urls')),
path('pomagam/', include('club.urls')),
path('messaging/', include('messaging.urls')),
path('re/', include('redirects.urls')),
path('stats/', include('stats.urls')),
path('paypal/', include('paypal.urls')),
path('powiadomienie/', include('push.urls')),
path('pomagam/', include('club.urls')),
path('towarzystwo/notify/<int:pk>/', club.views.PayUNotifyView.as_view(), name='club_payu_notify'),
path('towarzystwo/notify/<int:pk>/', club.views.PayUNotifyView.as_view(), name='club_payu_notify'),
path('towarzystwo/<path:path>', RedirectView.as_view(
url='/pomagam/%(path)s', permanent=False)),
path('towarzystwo/<path:path>', RedirectView.as_view(
url='/pomagam/%(path)s', permanent=False)),
# 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'),
# 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'),
path('szukaj/', include('search.urls')),
path('i18n/', include('django.conf.urls.i18n')),
path('szukaj/', include('search.urls')),
path('i18n/', include('django.conf.urls.i18n')),
]
urlpatterns += [
# old static pages - redirected
path('1procent/', RedirectView.as_view(
]
urlpatterns += [
# old static pages - redirected
path('1procent/', RedirectView.as_view(
path('epub/', RedirectView.as_view(
url='/katalog/lektury/', permanent=False)),
path('mozesz-nam-pomoc/', RedirectView.as_view(
path('epub/', RedirectView.as_view(
url='/katalog/lektury/', permanent=False)),
path('mozesz-nam-pomoc/', RedirectView.as_view(
+ 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}),
# Static files
path('%s<path:path>' % settings.MEDIA_URL[1:], django.views.static.serve,
{'document_root': settings.MEDIA_ROOT, 'show_indexes': True}),