X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/dd79289baf8168c654faaaa5c8e5840e3a63f94e..634abe44a671e272552f0016155211ae91be09de:/src/catalogue/urls.py diff --git a/src/catalogue/urls.py b/src/catalogue/urls.py index 2bcba237..d512eea0 100644 --- a/src/catalogue/urls.py +++ b/src/catalogue/urls.py @@ -11,6 +11,7 @@ urlpatterns = [ path("book//", views.BookView.as_view(), name="catalogue_book"), path("book/.json", views.BookAPIView.as_view(), name="catalogue_book_api"), + path('terms/audience/', views.AudienceTerms.as_view()), path('terms/epoch/', views.EpochTerms.as_view()), path('terms/kind/', views.KindTerms.as_view()), path('terms/genre/', views.GenreTerms.as_view()), @@ -18,6 +19,7 @@ urlpatterns = [ path('terms/book_title/', views.BookTitleTerms.as_view()), path('terms/author/', views.AuthorTerms.as_view()), path('terms/thema/', views.ThemaTerms.as_view()), + path('terms/thema-main/', views.MainThemaTerms.as_view()), path('terms/editor/', views.EditorTerms.as_view()), @@ -28,4 +30,7 @@ urlpatterns = [ path('publish/kind//', views.publish_kind, name='catalogue_publish_kind'), path('publish/epoch//', views.publish_epoch, name='catalogue_publish_epoch'), path('publish/collection//', views.publish_collection, name='catalogue_publish_collection'), + + path('woblink/author/autocomplete', views.woblink_author_autocomplete, + name='catalogue_woblink_author_autocomplete'), ]