diff --git a/progit/templates/issue.html b/progit/templates/issue.html index 67e5ba9..7020fff 100644 --- a/progit/templates/issue.html +++ b/progit/templates/issue.html @@ -88,6 +88,52 @@ {% endif %} +
+ Blocking: + {% if issue.parents %} + {% for ticket in issue.parents %} + + {{ ticket.id }} + {% endfor %} + {% endif %} + + {% if authenticated and form_tag %} +
+ + + {{ form_tag.csrf_token }} +
+ {% endif %} +
+ +
+ Depends on: + {% if issue.children %} + {% for ticket in issue.children %} + + {{ ticket.id }} + {% endfor %} + {% endif %} + + {% if authenticated and form_tag %} +
+ + + {{ form_tag.csrf_token }} +
+ {% endif %} +
+ {{ show_comment(issue.user, issue.date_created, issue.content) }} {% if issue.comments %}