{% extends "base.html" %} {% block title %}Issues · {{ owner }}/{{ repository }} · tit{% endblock %} {% block content %} {{ owner }}/{{ repository }} {% include "repository-nav.html" %} Issues Issue RSS State Open Closed All Filter {% if issues.is_empty() %} This repository has no issues. {% else %} {% for issue in issues %} #{{ issue.number }} {{ issue.title }} {{ issue.state }} · opened by {{ issue.author }} · updated {{ issue.updated_at|human_time }} {% endfor %} {% if has_previous || has_next %} {% if has_previous %} Newer issues {% endif %} {% if has_next %} Older issues {% endif %} {% endif %} {% endif %} {% if !can_create %} Log in to create an issue. {% endif %} {% if can_create %} Create an issue Title Description (Markdown) Create issue {% endif %} {% endblock %}
This repository has no issues.
Log in to create an issue.