Parent: [0545e1] (diff)

Download this file

fork.html    19 lines (16 with data), 589 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}} / Fork {{from_repo.name}}{% endblock %}
{% block header %}Fork {{from_repo.name}}{% endblock %}
{% block content %}
<form action="." method="POST">
{{to_project_name}}/<input type="text" name="to_name" value="{{to_name}}"/>
{% if c.user != c.user.anonymous() %}
<input type="submit" value="Fork"/>
{% endif %}
</form>
<div id="in-use" style="display:none">
{% for used in in_use %}
<span>{{used}}</span>
{% endfor %}
</div>
{% endblock %}