## -*- coding: utf-8 -*- ${h.form(url('repos'))}
${h.text('repo_name',class_='form-control')}
${h.text('clone_uri',class_='form-control')} ${_('Optional: URL of a remote repository. If set, the repository will be created as a clone from this URL.')}
${h.textarea('repo_description',class_='form-control')} ${_('Keep it short and to the point. Use a README file for longer descriptions.')}
${h.select('repo_group',None,c.repo_groups,class_='form-control')} ${_('Optionally select a group to put this repository into.')}
${h.checkbox('repo_copy_permissions',value="True")} ${_('Copy permission set from parent repository group.')}
${h.select('repo_type','hg',c.backends,class_='form-control')} ${_('Type of repository to create.')}
${h.select('repo_landing_rev','',c.landing_revs,class_='form-control')} ${_('Default revision for files page, downloads, full text search index and readme generation')}
${h.checkbox('repo_private',value="True")} ${_('Private repositories are only visible to people explicitly added as collaborators.')}
${h.submit('add',_('Add'),class_="btn btn-default")}
${h.end_form()}