repo_fork.html
59 lines
| 1.9 KiB
| text/html
|
HtmlLexer
r547 | ## -*- coding: utf-8 -*- | |||
<%inherit file="/base/base.html"/> | ||||
<%def name="title()"> | ||||
r619 | ${c.repo_name} ${_('Fork')} - ${c.rhodecode_name} | |||
r547 | </%def> | |||
<%def name="breadcrumbs_links()"> | ||||
${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))} | ||||
» | ||||
${_('fork')} | ||||
</%def> | ||||
<%def name="page_nav()"> | ||||
${self.menu('')} | ||||
</%def> | ||||
<%def name="main()"> | ||||
<div class="box"> | ||||
<!-- box / title --> | ||||
<div class="title"> | ||||
${self.breadcrumbs()} | ||||
</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"> | ||||
r562 | ${h.text('fork_name',class_="small")} | |||
r659 | ${h.hidden('repo_type',c.repo_info.repo_type)} | |||
r547 | </div> | |||
</div> | ||||
<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="buttons"> | ||||
${h.submit('','fork this repository',class_="ui-button ui-widget ui-state-default ui-corner-all")} | ||||
</div> | ||||
</div> | ||||
</div> | ||||
${h.end_form()} | ||||
</div> | ||||
</%def> | ||||