X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/407a830d3dbe065b09de2207d69b1d38511a770c..6c81c82481a5407bc6e4f3c5cdd16baedbc2a523:/src/catalogue/views.py?ds=sidebyside diff --git a/src/catalogue/views.py b/src/catalogue/views.py index 635af5fd..5ea1bbea 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), + "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]))