{% extends "repo_master.html" %} {% from "_formhelper.html" import render_field, show_comment %} {% block title %}Issue #{{ issueid }} - {{ repo.name }}{% endblock %} {%block tag %}home{% endblock %} {% block repo %} {% if authenticated and form %}
{{ form.csrf_token }} {% endif %}

#{{ issueid }} {{ issue.title }} {% if authenticated and repo_admin %} - Edit {% endif %}

Tags: {% for tag in issue.tags %} {{ tag.tag }}{%- if not loop.last -%},{%- endif -%} {% endfor %} {% if authenticated and repo_admin %} {% endif %}
Assigned: {% if issue.assignee %} {{ issue.assignee.username }} {% endif %} {% if authenticated %} {% endif %}
Blocking: {% if issue.parents %} {% for ticket in issue.parents %} {{ ticket.id }}{%- if not loop.last -%},{%- endif -%} {% endfor %} {% endif %} {% if authenticated %} {% endif %}
Depends on: {% if issue.children %} {% for ticket in issue.children %} {{ ticket.id }}{%- if not loop.last -%},{%- endif -%} {% endfor %} {% endif %} {% if authenticated %} {% endif %}
{{ show_comment(issue.user, issue.date_created, issue.content, 0) }} {% if issue.comments %} {% for comment in issue.comments %} {{ show_comment(comment.user, comment.date_created, comment.comment, loop.index) }} {% endfor %} {% endif %}
{% if authenticated and form %}
(supports the Markdown syntax)
Select files OR drag them into the comment field below. {% else %}

Login to comment on this ticket.

{% endif %}
{% if authenticated and form %}
{% endif %} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}