{% extends 'repository/repo_layout.html' %} {% block title %}Issues - {{ repo_owner }}/{{ repo_name }} - {{ brand_name }}{% endblock %} {% block repo_content %}

Issues

{{ issues|length }}
{% if session.get('user_id') %} {% endif %}
{% if issues %}
{% for issue in issues %}
{% if issue.status == 'open' %} {% else %} {% endif %}
{{ issue.title }} {% if issue.labels %}
{% for label in issue.labels %} {{ label.name }} {% endfor %}
{% endif %}
{% if issue.comment_count > 0 %}
{{ issue.comment_count }}
{% endif %}
#{{ issue.id }} opened {{ issue.created_at | timesince }} by {% if issue.author_avatar %} {% else %}
{{ issue.author_name[:2] }}
{% endif %} {{ issue.author_name }}
{% endfor %}
{% else %}

No issues found

Be the first to create an issue for this repository.

{% if session.get('user_id') %} {% endif %}
{% endif %}
{% include 'repository_modals/new_issue_modal.html' %} {% endblock %}