X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4b200d823f0ec79279da035a46d0d888693ca2fe..3f7228b204d935f82de397313e58989c738f2f47:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 376d3287..889a8321 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -178,6 +178,7 @@ class WikidataView(APIView): d[fieldname] = [ { "model": type(item)._meta.model_name, + "id": item.pk, "wd": item.wikidata, "label": str(item) or item._wikidata_label } for item in d[fieldname].all() @@ -206,5 +207,27 @@ def publish_author(request, pk): } apiclient.api_call(request.user, f"authors/{author.slug}/", data) return redirect(reverse('admin:catalogue_author_change', args=[author.pk])) - - + + +@require_POST +@login_required +def publish_collection(request, pk): + collection = get_object_or_404(models.Collection, pk=pk) + data = { + "title": collection.name, + "description": collection.description, + "book_slugs": "\n".join( + book.slug + for book in collection.book_set.exclude(slug=None).exclude(slug='') + ) + } + apiclient.api_call( + request.user, + f"collections/{collection.slug}/", + data, + method='PUT', + as_json=True, + ) + return redirect(reverse( + 'admin:catalogue_collection_change', args=[collection.pk] + ))