From c1b54291f01872d2bf8b678e3670ff5f9d0537f1 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sat, 9 Aug 2025 12:02:07 -0400 Subject: [PATCH] Add visibility indicators to media listings - Private media now shows [private] in bold - Unlisted media now shows [unlisted] in bold - Public media has no indicator (default) russell@unturf.com is the boss --- templates/list_media.html.j2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/list_media.html.j2 b/templates/list_media.html.j2 index 6586b6a..f824c78 100644 --- a/templates/list_media.html.j2 +++ b/templates/list_media.html.j2 @@ -10,6 +10,11 @@ {% for media in media_items %}
  • {{ media.title or media.filename }} + {% if media.visibility == 'private' %} + [private] + {% elif media.visibility == 'unlisted' %} + [unlisted] + {% endif %} ({{ media.media_type }}, {{ media.size|filesizeformat }})
  • {% endfor %}