From 77b73d0ab2e948e628ece21ca5467ee1a6833ab4 Mon Sep 17 00:00:00 2001 From: Pierre-Antoine Champin Date: Sat, 27 Apr 2019 21:50:46 +0200 Subject: [PATCH] added translation list in article template --- alchemy/templates/article.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/alchemy/templates/article.html b/alchemy/templates/article.html index 4ff9bf3..9fa242e 100644 --- a/alchemy/templates/article.html +++ b/alchemy/templates/article.html @@ -41,6 +41,14 @@ {% endfor %} {% endif %} + {% if article.translations %} +
  • + + {% for translation in article.translations %} + {{ translation.lang }} + {% endfor %} +
  • + {% endif %}