## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%def name="title()"> ${_('Repositories defaults')} - ${c.rhodecode_name} <%def name="breadcrumbs_links()"> ${h.link_to(_('Admin'),h.url('admin_home'))} » ${_('Defaults')} <%def name="page_nav()"> ${self.menu('admin')} <%def name="main()">
${self.breadcrumbs()}

${_('Repositories defaults')}

${h.form(url('default', id='defaults'),method='put')}
${h.select('default_repo_type','hg',c.backends,class_="medium")}
${h.checkbox('default_repo_private',value="True")} ${_('Private repositories are only visible to people explicitly added as collaborators.')}
${h.checkbox('default_repo_enable_statistics',value="True")} ${_('Enable statistics window on summary page.')}
${h.checkbox('default_repo_enable_downloads',value="True")} ${_('Enable download menu on summary page.')}
${h.checkbox('default_repo_enable_locking',value="True")} ${_('Enable lock-by-pulling on repository.')}
${h.submit('save',_('Save'),class_="ui-btn large")}
${h.end_form()} ##

${_('Groups defaults')}