{% extends "base.html" %} {% block content %}
{% include "partials/repo_heading.html" %} {% set repo_tab = "pulls" %} {% set compare_path = repo_path ~ "/compare" %} {% include "partials/repo_tabs.html" %}

Edit Pull #{{ pull.number }}

View pull
{% if current_user %} {% if pull.status == "merged" %} {% endif %} {% if edit_error %} {% endif %} {% if can_edit_content and pull.status != "merged" %}
Edit pull
{% with textarea_id="pull-edit-body", textarea_name="body", textarea_rows=5, textarea_value=edit_form.body, textarea_classes="form-control", textarea_autofocus=true %} {% include "partials/markdown_preview_tabs.html" %} {% endwith %}
Cancel
{% endif %} {% endif %}
{% endblock %}