{% extends "base.html" %} {% from "partials/css_helpers.html" import protection_status_badge %} {% block content %}
{% include "partials/repo_heading.html" %} {% set repo_tab = "pulls" %} {% include "partials/repo_tabs.html" %}
Repo pulls
{% if pull_create_message %} {{ pull_create_message }} {% else %} Create pull {% endif %}
{% if page.results | length == 0 %}

No repo pulls found.

{% else %}
{% for pull in page.results %} {% endfor %}
Pull Source Status Updated
by {% with user_link_href = "/" ~ pull.created_by, user_link_username = pull.created_by, user_link_label = pull.created_by, user_link_class = "text-decoration-none" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
{{ pull.source_ref }} → {{ pull.target_ref }}
{{ pull.status }} {% if pull.protection_status %} {{ pull.protection_status }} {% endif %} {{ pull.updated_at | humantime }}
{% endif %}
{% with page=page, query=query, per_page_id="repo-pulls-per-page", per_page_form="repo-pulls-filter-form" %} {% include "partials/paging_footer.html" %} {% endwith %}
{% endblock %} {% block scripts %} {% endblock %}