Fundraising in PDF.
[wolnelektury.git] / src / newsletter / urls.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from django.urls import path
5 from django.views.generic import RedirectView
6 from . import views
7
8 urlpatterns = [
9     path('zapisz-sie/', views.subscribe_form, name='subscribe'),
10     path('zapisz-sie/<slug:slug>/', views.subscribe_form, name='subscribe'),
11     path('zapis/', views.subscribed, name='subscribed'),
12     path('wypisz-sie/', RedirectView.as_view(
13             url='https://mailing.mdrn.pl/?p=unsubscribe',
14             permanent=False,
15         ), name='unsubscribe'),
16 ]