{% extends "pages/base.html" %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block content %}
{% blocktrans with repository_slug=repository_slug %}Showing all open issues and pull requests for {{ repository_slug }}.{% endblocktrans %}
{% if error_message %}| {% trans "Type" %} | {% trans "Number" %} | {% trans "Title" %} | {% trans "Author" %} | {% trans "State" %} |
|---|---|---|---|---|
| {% if entry.kind == "pull_request" %} PR {% else %} Issue {% endif %} | #{{ entry.number }} | {{ entry.title }} | {{ entry.author|default:"-" }} | {{ entry.state|default:"-" }} |
{% trans "No open issues or pull requests were found." %}
{% endif %} {% endif %}