X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/dd79289baf8168c654faaaa5c8e5840e3a63f94e..73046626ddfd1cd23d0d4bdd904d1a7bae76c455:/src/catalogue/views.py?ds=sidebyside diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 4ae5c742..17d61a41 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -219,7 +219,15 @@ 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(), + "genitive": author.genitive, + "gazeta_link": author.gazeta_link, + "culturepl_link": author.culturepl_link, + "wiki_link_pl": author.plwiki, + "photo": request.build_absolute_uri(author.photo.url) if author.photo else None, + "photo_source": author.photo_source, + "photo_attribution": author.photo_attribution, } apiclient.api_call(request.user, f"authors/{author.slug}/", data) return redirect(reverse('admin:catalogue_author_change', args=[author.pk])) @@ -230,6 +238,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 +252,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 +265,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,