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

{{ owner }}/{{ repository }}

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

Pull requests

{% if pull_requests.is_empty() %}

This repository has no pull requests.

{% else %}
    {% for pull_request in pull_requests %}
  1. #{{ pull_request.number }} {{ pull_request.title }} {{ pull_request.state }} · opened by {{ pull_request.author }} · updated
  2. {% endfor %}
{% if has_previous || has_next %} {% endif %} {% endif %} {% if !can_create %}

You need write access to open a pull request.

{% endif %}
{% if can_create %}

Open a pull request

{% for branch in branches %} {% endfor %}
{% endif %} {% endblock %}