## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
${_('%s Settings')%c.repo_name} - ${c.rhodecode_name}</%def>
<%def name="breadcrumbs_links()">
${h.link_to(_(u'Home'),h.url('/'))}»${h.link_to(c.repo_info.repo_name,h.url('summary_home',repo_name=c.repo_info.repo_name))}»${_('Settings')}</%def>
<%def name="page_nav()">
${self.menu('settings')}</%def>
<%def name="main()">
<divclass="box"><!-- box / title --><divclass="title">${self.breadcrumbs()}</div>${h.form(url('repo_settings_update',repo_name=c.repo_info.repo_name),method='put')}<divclass="form"><!-- fields --><divclass="fields"><divclass="field"><divclass="label"><labelfor="repo_name">${_('Name')}:</label></div><divclass="input input-medium">${h.text('repo_name',class_="small")}</div></div><divclass="field"><divclass="label"><labelfor="clone_uri">${_('Clone uri')}:</label></div><divclass="input">${h.text('clone_uri',class_="medium")}<spanclass="help-block">${_('Optional http[s] url from which repository should be cloned.')}</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">${_('Optional select a group to put this repository into.')}</span></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 label-textarea"><labelfor="description">${_('Description')}:</label></div><divclass="textarea text-area editor">${h.textarea('description')}<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 repository')}:</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"><labelfor="">${_('Permissions')}:</label></div><divclass="input"><%include file="../admin/repos/repo_edit_perms.html"/>
</div><divclass="buttons">${h.submit('save',_('Save'),class_="ui-btn large")}${h.reset('reset',_('Reset'),class_="ui-btn large")}</div></div></div>${h.end_form()}</div></div></%def>