From 16fdbfe29b67b305cc2954d150785da311cf794f Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 23 2014 07:59:30 +0000 Subject: Displays the tags of an issue and link them to allow viewing all issues with this tag --- diff --git a/progit/templates/issue.html b/progit/templates/issue.html index 5dff76a..4930d8b 100644 --- a/progit/templates/issue.html +++ b/progit/templates/issue.html @@ -48,6 +48,24 @@ +
+ Tags: + {% for tag in issue.tags %} + + {{ tag.tag }}{% if not loop.last %},{% endif %} + {% endfor %} + {% if authenticated and tagform %} +
+ {{ render_field(tagform.tags) }} + + {{ form.csrf_token }} +
+ {% endif %} +
+ {{ show_comment(issue.user, issue.date_created, issue.content) }} {% if issue.comments %}