changeset 6074:2dfbd29ae8f7

templates: remove unused repo_edit_fork template
author Mads Kiilerich <madski@unity3d.com>
date Thu, 04 Aug 2016 14:23:36 +0200
parents 1fdff0d0516c
children 2e294e1fb9e2
files kallithea/templates/admin/repos/repo_edit_fork.html
diffstat 1 files changed, 0 insertions(+), 21 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/repos/repo_edit_fork.html	Thu Aug 04 14:23:36 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-${h.form(url('repo_as_fork', repo_name=c.repo_info.repo_name),method='put')}
-<div class="form">
-   <div class="fields">
-       ${h.select('id_fork_of','',c.repos_list,class_="medium")}
-       ${h.submit('set_as_fork_%s' % c.repo_info.repo_name,_('Set'),class_="btn btn-small")}
-   </div>
-       <div class="field" style="border:none;color:#888">
-       <ul>
-            <li>${_('''Manually set this repository as a fork of another from the list.''')}</li>
-       </ul>
-       </div>
-</div>
-${h.end_form()}
-
-<script>
-    $(document).ready(function(){
-        $("#id_fork_of").select2({
-            'dropdownAutoWidth': true
-        });
-    });
-</script>