## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Fork')%c.repo_name}·${c.rhodecode_name}</%def>
<%def name="breadcrumbs_links()">
${_('Fork')}</%def>
<%def name="page_nav()">
${self.menu('repositories')}</%def>
<%def name="main()">
${self.context_bar('showforks')}<divclass="box"><!-- box / title --><divclass="title">${self.breadcrumbs()}</div>${h.form(url('repo_fork_create_home',repo_name=c.repo_info.repo_name))}<divclass="form"><!-- fields --><divclass="fields"><divclass="field"><divclass="label"><labelfor="repo_name">${_('Fork name')}:</label></div><divclass="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><divclass="field"><divclass="label"><labelfor="landing_rev">${_('Landing revision')}:</label></div><divclass="input">${h.select('landing_rev','',c.landing_revs,class_="medium")}<spanclass="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span></div></div><divclass="field"><divclass="label"><labelfor="repo_group">${_('Repository group')}:</label></div><divclass="input">${h.select('repo_group','',c.repo_groups,class_="medium")}<spanclass="help-block">${_('Optionaly select a group to put this repository into.')}</span></div></div><divclass="field"><divclass="label label-textarea"><labelfor="description">${_('Description')}:</label></div><divclass="textarea text-area editor">${h.textarea('description',cols=23,rows=5)}<spanclass="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span></div></div><divclass="field"><divclass="label label-checkbox"><labelfor="private">${_('Private')}:</label></div><divclass="checkboxes">${h.checkbox('private',value="True")}<spanclass="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span></div></div><divclass="field"><divclass="label label-checkbox"><labelfor="private">${_('Copy permissions')}:</label></div><divclass="checkboxes">${h.checkbox('copy_permissions',value="True",checked="checked")}<spanclass="help-block">${_('Copy permissions from forked repository')}</span></div></div> %if c.can_update:
<divclass="field"><divclass="label label-checkbox"><labelfor="private">${_('Update after clone')}:</label></div><divclass="checkboxes">${h.checkbox('update_after_clone',value="True")}<spanclass="help-block">${_('Checkout source after making a clone')}</span></div></div> %endif
<divclass="buttons">${h.submit('',_('Fork this repository'),class_="ui-btn large")}</div></div></div>${h.end_form()}</div></%def>