{% 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 %}
Issue | Opened | {% if status and status|lower != 'open' %}Closed | {% endif %}Priority (reset) | Reporter (reset) | {% if not status or status|lower == 'open' %}Assignee (reset) | {% endif %}
---|---|---|---|---|---|
#{{ 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 status and status|lower != 'open' %}{% if issue.closed_at != None %} {{ issue.closed_at | humanize}} {% endif %} | {% 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 |