{% extends "base.html" %} {% block title %}Pull requests · {{ owner }}/{{ repository }} · tit{% endblock %} {% block content %} {{ owner }}/{{ repository }} {% include "repository-nav.html" %} Pull requests State Open Closed Merged All Filter {% if pull_requests.is_empty() %} This repository has no pull requests. {% else %} {% for pull_request in pull_requests %} #{{ pull_request.number }} {{ pull_request.title }} {{ pull_request.state }} · opened by {{ pull_request.author }} · updated {{ pull_request.updated_at|human_time }} {% endfor %} {% if has_previous || has_next %} {% if has_previous %} Newer pull requests {% endif %} {% if has_next %} Older pull requests {% endif %} {% endif %} {% endif %} {% if !can_create %} You need write access to open a pull request. {% endif %} {% if can_create %} Open a pull request Title Description (Markdown) Base branch Head branch {% for branch in branches %} {% endfor %} Open pull request {% endif %} {% endblock %}
This repository has no pull requests.
You need write access to open a pull request.