{% extends "base.html" %} {% block title %}Issues · {{ owner }}/{{ repository }} · tit{% endblock %} {% block content %}

{{ owner }}/{{ repository }}

{% include "repository-nav.html" %}

Issues

Issue RSS

{% if issues.is_empty() %}

This repository has no issues.

{% else %}
    {% for issue in issues %}
  1. #{{ issue.number }} {{ issue.title }} — {{ issue.state }}, opened by {{ issue.author }}, updated
  2. {% endfor %}
{% if has_previous || has_next %} {% endif %} {% endif %} {% if can_create %}

Create an issue

{% else %}

Log in to create an issue.

{% endif %} {% endblock %}