path("", views.CatalogueView.as_view(), name="catalogue"),
path("author/<slug:slug>/", views.AuthorView.as_view(), name="catalogue_author"),
path("book/<slug:slug>/", views.BookView.as_view(), name="catalogue_book"),
+ path("book/<slug:slug>.json", views.BookAPIView.as_view(), name="catalogue_book_api"),
path('terms/epoch/', views.EpochTerms.as_view()),
path('terms/kind/', views.KindTerms.as_view()),
path('terms/author/', views.AuthorTerms.as_view()),
path('terms/editor/', views.EditorTerms.as_view()),
+
+ path('wikidata/<slug:model>/<qid>', views.WikidataView.as_view()),
+
+ path('publish/author/<int:pk>/', views.publish_author, name='catalogue_publish_author'),
+ path('publish/collection/<int:pk>/', views.publish_collection, name='catalogue_publish_collection'),
]