From 97d0ce94d0956cf5392d8b4b823965fa111917ef Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
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; }
 <th>tags</th>
 <td>
 <table>
-{% for tag in self.tags_showable %}
+{% for tag in file.tags_showable %}
 <tr>
 <td class="tag_checkboxes"><input type="checkbox" name="tags" value="{{tag}}" checked{% if not allow_edit %} disabled{% endif %}/></td>
 <td>{{tag}}</td>
-- 
2.30.2