Fundraising in PDF.
[wolnelektury.git] / src / social / 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.decorators.cache import never_cache
6 from . import views
7
8
9 urlpatterns = [
10     path('lektura/<slug:slug>/lubie/', views.like_book, name='social_like_book'),
11     path('dodaj-tag/', views.AddSetView.as_view(), name='social_add_set_tag'),
12     path('usun-tag/', views.RemoveSetView.as_view(), name='social_remove_set_tag'),
13     path('moje-tagi/', views.my_tags, name='social_my_tags'),
14     path('lektura/<slug:slug>/nie_lubie/', views.unlike_book, name='social_unlike_book'),
15     path('polka/', views.my_shelf, name='social_my_shelf'),
16     path('ulubione/', views.my_liked),
17 ]