fork.html
100 lines
| 3.9 KiB
| text/html
|
HtmlLexer
r1722 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
Vincent Duvert
|
r2417 | ${_('%s Fork') % c.repo_name} - ${c.rhodecode_name} | ||
r1722 | </%def> | |||
<%def name="breadcrumbs_links()"> | ||||
Takumi IINO
|
r2492 | ${h.link_to(_(u'Home'),h.url('/'))} | ||
r1722 | » | |||
r1888 | ${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))} | |||
r1722 | » | |||
${_('fork')} | ||||
</%def> | ||||
<%def name="page_nav()"> | ||||
Mads Kiilerich
|
r3197 | ${self.menu('')} | ||
r1722 | </%def> | |||
<%def name="main()"> | ||||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
r1888 | ${self.breadcrumbs()} | |||
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> | ||||
r2485 | <div class="field"> | |||
<div class="label"> | ||||
<label for="landing_rev">${_('Landing revision')}:</label> | ||||
</div> | ||||
<div class="input"> | ||||
${h.select('landing_rev','',c.landing_revs,class_="medium")} | ||||
<span class="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span> | ||||
</div> | ||||
r2673 | </div> | |||
r1722 | <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")} | ||||
r2485 | <span class="help-block">${_('Optionaly select a group to put this repository into.')}</span> | |||
r1722 | </div> | |||
r1888 | </div> | |||
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)} | ||||
r2485 | <span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span> | |||
r1722 | </div> | |||
</div> | ||||
<div class="field"> | ||||
<div class="label label-checkbox"> | ||||
<label for="private">${_('Private')}:</label> | ||||
</div> | ||||
<div class="checkboxes"> | ||||
${h.checkbox('private',value="True")} | ||||
r2485 | <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span> | |||
r1722 | </div> | |||
</div> | ||||
<div class="field"> | ||||
<div class="label label-checkbox"> | ||||
<label for="private">${_('Copy permissions')}:</label> | ||||
</div> | ||||
<div class="checkboxes"> | ||||
r2175 | ${h.checkbox('copy_permissions',value="True", checked="checked")} | |||
r2485 | <span class="help-block">${_('Copy permissions from forked repository')}</span> | |||
r1722 | </div> | |||
r1888 | </div> | |||
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")} | ||||
r2485 | <span class="help-block">${_('Checkout source after making a clone')}</span> | |||
r1742 | </div> | |||
r1888 | </div> | |||
Mads Kiilerich
|
r3197 | <div class="buttons"> | ||
${h.submit('',_('fork this repository'),class_="ui-btn large")} | ||||
</div> | ||||
r1722 | </div> | |||
r1888 | </div> | |||
${h.end_form()} | ||||
r1722 | </div> | |||
r1888 | </%def> | |||