Fundraising in PDF.
[wolnelektury.git] / src / push / 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 push import views
6
7
8 urlpatterns = [
9     path('wyslij/', views.notification_form, name='notification_form'),
10     path('wyslane/', views.notification_sent, name='notification_sent'),
11 ]