From a72c4771fa8b0612594b4b98382b3e2605399074 Mon Sep 17 00:00:00 2001 From: Jordan Robinson Date: Wed, 24 Sep 2025 23:21:13 +0100 Subject: [PATCH] add tags to draft posts list --- main/templates/main/blog_posts.html | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/main/templates/main/blog_posts.html b/main/templates/main/blog_posts.html index a37dcaaa5d38be616c7fdcd4138397216e25e267..1b10fb8f823506a8ed9984f81414b21751174aba 100644 --- a/main/templates/main/blog_posts.html +++ b/main/templates/main/blog_posts.html @@ -52,6 +52,15 @@ {% for d in drafts %}
  • {{ d.title }} + {% if d.tag_list and request.blog_user.show_tags_in_post_list %} + + — Tags: + {% for tag in d.tag_list %} + {{ tag }} + {% if not forloop.last %}, {% endif %} + {% endfor %} + + {% endif %}
  • {% endfor %}