diff --git a/themes/cwi/templates/translations.html b/themes/cwi/templates/translations.html new file mode 100644 index 0000000000000000000000000000000000000000..7894bb07194c57c3debc2559d2948db79963020a --- /dev/null +++ b/themes/cwi/templates/translations.html @@ -0,0 +1,8 @@ +{% macro translations_for(article) %} +{% if article.translations %} +Translations: + {% for translation in article.translations %} + {{ translation.lang }} + {% endfor %} +{% endif %} +{% endmacro %}