-# 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.urls import path, re_path
from django.db.models import Max
from catalogue.feeds import AudiobookFeed
from catalogue.models import Book
from catalogue import views
-import picture.views
import search.views
urlpatterns = [
- path('obraz/strona/', picture.views.picture_page, name='picture_page'),
- # pictures - currently pictures are coupled with catalogue, hence the url is here
- path('obraz/', picture.views.picture_list_thumb, name='picture_list_thumb'),
- path('obraz/<slug:slug>.html', picture.views.picture_viewer, name='picture_viewer'),
- path('obraz/<slug:slug>/', picture.views.picture_detail, name='picture_detail'),
-
# old search page - redirected
path('szukaj/', RedirectView.as_view(
url='/szukaj/', query_string=True, permanent=True)),
path('rodzaj/', views.tag_catalogue, {'category': 'kind'}, name='kind_catalogue'),
path('motyw/', views.tag_catalogue, {'category': 'theme'}, name='theme_catalogue'),
- path('galeria/', views.GalleryView.as_view(), name='gallery'),
path('kolekcje/', views.collections, name='catalogue_collections'),
path('lektury/', views.LiteratureView.as_view(), name='book_list'),
# Public interface. Do not change this URLs.
path('lektura/<slug:slug>.html', views.book_text, name='book_text'),
- path('lektura/<slug:slug>/audiobook/', views.player, name='book_player'),
path('lektura/<slug:slug>/', views.book_detail, name='book_detail'),
path('lektura/<slug:slug>/motyw/<slug:theme_slug>/',
views.book_fragments, name='book_fragments'),
path('isbn/<slug:book_format>/<slug:slug>/', views.get_isbn),
# This should be the last pattern.
- re_path(r'^galeria/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'gallery'},
- name='tagged_object_list_gallery'),
re_path(r'^audiobooki/(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'audiobooks'},
name='tagged_object_list_audiobooks'),
- re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.TaggedObjectList.as_view(),
+ re_path(r'^(?P<tags>[a-zA-Z0-9-/]*)/$', views.tagged_object_list, {'list_type': 'books'},
name='tagged_object_list'),
]