From: Radek Czajka <rczajka@rczajka.pl>
Date: Mon, 19 Jun 2023 13:56:46 +0000 (+0200)
Subject: publish tag names
X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/407a830d3dbe065b09de2207d69b1d38511a770c

publish tag names
---

diff --git a/src/catalogue/views.py b/src/catalogue/views.py
index 4ae5c742..635af5fd 100644
--- a/src/catalogue/views.py
+++ b/src/catalogue/views.py
@@ -219,6 +219,7 @@ class WikidataView(APIView):
 def publish_author(request, pk):
     author = get_object_or_404(models.Author, pk=pk)
     data = {
+        "name_pl": author.name,
         "description_pl": author.generate_description(),
     }
     apiclient.api_call(request.user, f"authors/{author.slug}/", data)
@@ -230,6 +231,7 @@ def publish_author(request, pk):
 def publish_genre(request, pk):
     obj = get_object_or_404(models.Genre, pk=pk)
     data = {
+        "name_pl": obj.name,
         "description_pl": obj.description,
         "plural": obj.plural,
         "is_epoch_specific": obj.is_epoch_specific,
@@ -243,6 +245,7 @@ def publish_genre(request, pk):
 def publish_kind(request, pk):
     obj = get_object_or_404(models.Kind, pk=pk)
     data = {
+        "name_pl": obj.name,
         "description_pl": obj.description,
         "collective_noun": obj.collective_noun,
     }
@@ -255,6 +258,7 @@ def publish_kind(request, pk):
 def publish_epoch(request, pk):
     obj = get_object_or_404(models.Epoch, pk=pk)
     data = {
+        "name_pl": obj.name,
         "description_pl": obj.description,
         "adjective_feminine_singular": obj.adjective_feminine_singular,
         "adjective_nonmasculine_plural": obj.adjective_feminine_singular,