Child: [059976] (diff)

Download this file

fork.html    35 lines (31 with data), 1.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends g.theme.master %}
{% 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">
{% if c.user != c.user.anonymous() %}
<label class="grid-4">Project:</label>
<div class="grid-15">
<select name="project_name">
<option value="{{to_project_name}}" selected="selected">{{to_project_name}}</option>
{% for p in c.user.my_projects() %}
<option value="{{p.shortname}}">{{p.name}}</option>
{% endfor %}
</select>
</div>
<label class="grid-4">Repository Name:</label>
<div class="grid-15">
<input type="text" name="to_name" value="{{to_name}}"/>
</div>
<label class="grid-4">&nbsp;</label>
<div class="grid-15">
<input type="submit" value="Fork"/>
</div>
{% endif %}
</form>
<div id="in-use" style="display:none">
{% for used in in_use %}
<span>{{used}}</span>
{% endfor %}
</div>
{% endblock %}