## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${c.repo_name} ${_('Settings')} - ${c.rhodecode_name} <%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 name="page_nav()"> ${self.menu('settings')} <%def name="main()">
${self.breadcrumbs()}
${h.form(url('repo_settings_update', repo_name=c.repo_info.repo_name),method='put')}
${h.text('repo_name',class_="small")}
${h.text('clone_uri',class_="medium")} ${_('Optional http[s] url from which repository should be cloned.')}
${h.select('repo_group','',c.repo_groups,class_="medium")} ${_('Optional select a group to put this repository into.')}
${h.textarea('description')} ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
${h.checkbox('private',value="True")} ${_('Private repositories are only visible to people explicitly added as collaborators.')}
<%include file="../admin/repos/repo_edit_perms.html"/>
${h.submit('save',_('Save'),class_="ui-button")} ${h.reset('reset',_('Reset'),class_="ui-button")}
${h.end_form()}