{% extends "repo_master.html" %} {% from "_render_repo.html" import pagination_link %} {% block title %}Issues - {{ repo.namespace + '/' if repo.namespace }}{{ repo.name }}{% endblock %} {% set tag = "home"%} {% block repo %}

{% if status|lower in ['open', 'true'] %} {{ issues|count }} Open Issues (of {{ issues_cnt }}) {% elif status|lower not in ['open', 'true', 'all', 'none'] %} {{ issues|count }} Closed Issues (of {{ issues_cnt }}) {% else %} {{ issues|count }} Issues {% endif %} {% if repo.milestones %} {% endif %} {% if g.repo.reports %} {% endif %}

{% if oth_issues %}
{% if (issues | length + oth_issues) %} {{ (100.0 * (1 - issues | length / (issues | length + oth_issues)))|round|int }}% {% endif %}
{% endif %}
Open Closed All {% for tag in tag_list %} {% if tag.tag in tags %} {% if status and status != 'Open' %} {% else %} {% endif %} {% else %} {% endif %} {{ tag.tag }} {% endfor %}
{% if status and status|lower != 'open' %} {% endif %} {% if not status or status|lower == 'open' %} {% endif %} {% for issue in issues %} {% if status and status|lower != 'open' %} {% endif %} {% else %} {% endfor %}
Issue OpenedClosed Priority (reset) Reporter (reset) Assignee (reset)
#{{ issue.id }} {% if status != 'Open' %} {{issue.status}} {% endif %} {% if issue.private %} {% endif %} {{ issue.title | noJS("img") | safe }}    {% if issue.user_comments|count > 0 %} {{issue.user_comments|count}} {% endif %} {% for tag in issue.tags%} {{tag.tag}} {% endfor%} {{ issue.date_created | humanize}} {% if issue.closed_at != None %} {{ issue.closed_at | humanize}} {% endif %} {% if issue.priority %} {{ repo.priorities[issue.priority | string] }} {% endif %} {{ issue.user.default_email | avatar(16) | safe }} {{ issue.user.user }} {% if not status or status|lower == 'open' %} {% if issue.assignee %} {{ issue.assignee.default_email | avatar(16) | safe }} {{ issue.assignee.user }} {% else %} unassigned {% endif %} {% endif %}
No issues found
{{ pagination_link('page', g.page, total_page) }} {% endblock %} {% block jscripts %} {{ super() }} {% endblock %}