##// END OF EJS Templates
fixed issues with removed repos was accidentally added as groups, after...
fixed issues with removed repos was accidentally added as groups, after full rescan of paths

File last commit:

r1888:f91d3f9b beta
r2069:003c504d beta
Show More
fork.html
86 lines | 2.9 KiB | text/html | HtmlLexer
#235 forking page repo group selection...
r1722 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${c.repo_name} ${_('Fork')} - ${c.rhodecode_name}
</%def>
<%def name="breadcrumbs_links()">
${h.link_to(u'Home',h.url('/'))}
&raquo;
White-space cleanup
r1888 ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}
#235 forking page repo group selection...
r1722 &raquo;
${_('fork')}
</%def>
<%def name="page_nav()">
${self.menu('')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
White-space cleanup
r1888 ${self.breadcrumbs()}
#235 forking page repo group selection...
r1722 </div>
${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}
<div class="form">
<!-- fields -->
<div class="fields">
<div class="field">
<div class="label">
<label for="repo_name">${_('Fork name')}:</label>
</div>
<div class="input">
${h.text('repo_name',class_="small")}
${h.hidden('repo_type',c.repo_info.repo_type)}
${h.hidden('fork_parent_id',c.repo_info.repo_id)}
</div>
</div>
<div class="field">
<div class="label">
<label for="repo_group">${_('Repository group')}:</label>
</div>
<div class="input">
${h.select('repo_group','',c.repo_groups,class_="medium")}
</div>
White-space cleanup
r1888 </div>
#235 forking page repo group selection...
r1722 <div class="field">
<div class="label label-textarea">
<label for="description">${_('Description')}:</label>
</div>
<div class="textarea text-area editor">
${h.textarea('description',cols=23,rows=5)}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Private')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('private',value="True")}
</div>
</div>
<div class="field">
<div class="label label-checkbox">
<label for="private">${_('Copy permissions')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('copy_permissions',value="True")}
</div>
White-space cleanup
r1888 </div>
added option to do a checkout after cloning a repository
r1742 <div class="field">
<div class="label label-checkbox">
<label for="private">${_('Update after clone')}:</label>
</div>
<div class="checkboxes">
${h.checkbox('update_after_clone',value="True")}
</div>
White-space cleanup
r1888 </div>
#235 forking page repo group selection...
r1722 <div class="buttons">
${h.submit('',_('fork this repository'),class_="ui-button")}
White-space cleanup
r1888 </div>
#235 forking page repo group selection...
r1722 </div>
White-space cleanup
r1888 </div>
${h.end_form()}
#235 forking page repo group selection...
r1722 </div>
White-space cleanup
r1888 </%def>