X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/407a830d3dbe065b09de2207d69b1d38511a770c..28866d0f2520b7515f3c06e9b61bcce4f44d53b1:/src/catalogue/views.py diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 635af5fd..17d61a41 100644 --- a/src/catalogue/views.py +++ b/src/catalogue/views.py @@ -221,6 +221,13 @@ def publish_author(request, 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]))