From 7cf1f40ff6373d4bf82587662c9621ae152d69d8 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 8 Jun 2024 12:16:52 +0100 Subject: [PATCH] Fix tags on spotlight carousel being untranslated --- app/templates/index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/templates/index.html b/app/templates/index.html index c6b7847f..ba6fb608 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -69,9 +69,10 @@ {{ warning.title }} {% endfor %} - {% for t in tags[:3] %} - - {{ t.title }} + {% for tag in tags[:3] %} + {% set trans = tag.get_translated() %} + + {{ trans.title }} {% endfor %}