1 # This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from django.urls import path
9 path("", views.CatalogueView.as_view(), name="catalogue"),
10 path("author/<slug:slug>/", views.AuthorView.as_view(), name="catalogue_author"),
11 path("book/<slug:slug>/", views.BookView.as_view(), name="catalogue_book"),
13 path('terms/epoch/', views.EpochTerms.as_view()),
14 path('terms/kind/', views.KindTerms.as_view()),
15 path('terms/genre/', views.GenreTerms.as_view()),