-# 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.
#
from django.conf import settings
from django.contrib import admin
# 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/zaloguj-utworz/', banner_exempt(views.LoginRegisterFormView()), name='login_register'),
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('mapa/', include('references.urls')),
path('newsletter/', include('newsletter.urls')),
path('formularz/', include('forms_builder.forms.urls')),
- path('isbn/', include('isbn.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('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')),
+
# 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('forum/', include('machina.urls')),
]
urlpatterns += [
# old static pages - redirected
path('1procent/', RedirectView.as_view(
- url='http://nowoczesnapolska.org.pl/wesprzyj_nas/', permanent=True)),
+ url='https://fundacja.wolnelektury.pl/pomoz-nam/1-procent/', permanent=True)),
path('epub/', RedirectView.as_view(
url='/katalog/lektury/', permanent=False)),
path('mozesz-nam-pomoc/', RedirectView.as_view(
url='/info/wlacz-sie-w-prace/', permanent=False)),
]
-urlpatterns += [
- # path('error-test/', views.exception_test),
- # path('post-test/', views.post_test),
-]
-
if settings.DEBUG:
import debug_toolbar
] + 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}),