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

#{{ issueid }} {{ issue.title | noJS("img") | safe }} {% if authenticated and (repo_admin or g.fas_user.username == issue.user.username) %} - 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, 0, repo, username, issueid, form) }}
{% if issue.comments %} {% for comment in issue.comments %} {{ show_comment(comment, comment.id, repo, username, issueid, form, repo_admin) }} {% 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() }} {% if config['EVENTSOURCE_SOURCE'] %} {% endif %} {% endblock %}