{% extends "repo_master.html" %} {% from "_formhelper.html" import render_field_in_row %} {% block title %}Remote Pull request {{ repo.name }}{% endblock %} {% set tag = "home" %} {% block repo %}

New remote pull-request

Remote pull-requests are pull-requests made from a project *not* hosted on pagure or not hosted on the same pagure instance than the target project, hosted on pagure.

If you wish to create a pull-request from a fork to a project on pagure, visit your fork, go to the branch where you pushed your changes, it will show the commits that can be merged with a red asterisk and click on the "Pull-Request" button.

{% if form %}
{{ render_field_in_row(form.title, size=80) }} {{ render_field_in_row(form.git_repo, size=80) }} {{ render_field_in_row(form.branch_from, size=80) }}
To branch

{{ form.csrf_token }}

{% endif %} {% endblock %}