From 97d0ce94d0956cf5392d8b4b823965fa111917ef Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 19 Dec 2024 05:07:32 +0100 Subject: [PATCH] Fix tags not showing in file view. --- src/templates/file_data.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/file_data.tmpl b/src/templates/file_data.tmpl index 37c1225..da8726f 100644 --- a/src/templates/file_data.tmpl +++ b/src/templates/file_data.tmpl @@ -34,7 +34,7 @@ td.tag_checkboxes { width: 1em; } tags -{% for tag in self.tags_showable %} +{% for tag in file.tags_showable %} -- 2.30.2
{{tag}}