--- a/Allura/allura/templates/repo/fork.html
+++ b/Allura/allura/templates/repo/fork.html
@@ -6,9 +6,25 @@
{% 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"/>
+ <ol>
+ <li>
+ <label>Project:</label>
+ <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>
+ </li>
+ <li>
+ <label>Repository Name:</label>
+ <input type="text" name="to_name" value="{{to_name}}"/>
+ <li>
+ <label> </label>
+ <input type="submit" value="Fork"/>
+ </li>
+ </ol>
{% endif %}
</form>
<div id="in-use" style="display:none">