## -*- coding: utf-8 -*- <%inherit file="/base/base.html"/> <%block name="title"> ${_('Repository Defaults')} <%def name="breadcrumbs_links()"> ${h.link_to(_('Admin'),h.url('admin_home'))} » ${_('Repository Defaults')} <%block name="header_menu"> ${self.menu('admin')} <%def name="main()">
${self.breadcrumbs()}
${h.form(url('defaults_update', id='defaults'))}
${h.select('default_repo_type','hg',c.backends,class_='form-control')}
${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.submit('save',_('Save'),class_="btn btn-default")}
${h.end_form()} ##

${_('Groups defaults')}