{% extends "repo_master.html" %} {% block title %}Issues - {{ repo.name }}{% endblock %} {%block tag %}home{% endblock %} {% block repo %}

{% if status and status != 'Open' %} Closed {% endif %} Issues ({{ issues|count }})

{% if status and status != 'Open' %} ({{ oth_issues }} Open) {% else %} ({{ oth_issues }} Closed) {% endif %} {% if oth_issues %}
{% if (issues | length + oth_issues) %} {{ (100.0 * (1 - issues | length / (issues | length + oth_issues)))|round|int }}% {% endif %}
{% endif %}
Tags: {% for tag in tag_list %} {{ tag.tag }}{% if not loop.last %},{% endif %} {% endfor %}
{% for issue in issues %} {% else %} {% endfor %}
# Title Opened by (reset) Opened on Assigned to (reset)
#{{ issue.id }} {{ issue.title }} {{ issue.user.user | avatar(16) | safe }} {{ issue.user.user }} {{ issue.date_created.strftime('%Y-%m-%d %H:%M') }} {% if issue.assignee %} {{ issue.assignee.user | avatar(16) | safe }} {{ issue.assignee.user }} {% else %} (unassigned) {% endif %}
No issues found
{% endblock %}