${h.text('repo_name',class_="medium")}
${_('Permanent Repository ID')}: `_${c.repo_info.repo_id}` ${_('What is that?')}
${_('URL by id')}: `${c.repo_info.clone_url(with_id=True)}`
${_('''In case this repository is renamed or moved into another group the repository URL changes.
Using the above permanent URL guarantees that this repository always will be accessible on that URL.
This is useful for CI systems, or any other cases that you need to hardcode the URL into a 3rd party service.''')}
%else:
## not set yet, display form to set it
${h.text('clone_uri',class_="medium")}
${h.hidden('clone_uri_change', 'NEW')}
%endif
${_('URL used for doing remote pulls.')}
${h.select('repo_group','',c.repo_groups,class_="medium")}
${_('Optionally select a group to put this repository into.')}
${h.select('repo_landing_rev','',c.landing_revs,class_="medium")}
${_('Default revision for files page, downloads, whoosh and readme')}
${h.text('user',class_='yui-ac-input')}
${_('Change owner of this repository.')}
${h.textarea('repo_description', style="height:165px")}
${_('Keep it short and to the point. Use a README file for longer descriptions.')}
${h.checkbox('repo_private',value="True")}
${_('Private repositories are only visible to people explicitly added as collaborators.')}
${h.checkbox('repo_enable_statistics',value="True")}
${_('Enable statistics window on summary page.')}
${h.checkbox('repo_enable_downloads',value="True")}
${_('Enable download menu on summary page.')}
${h.checkbox('repo_enable_locking',value="True")}
${_('Enable lock-by-pulling on repository.')}
%if c.visual.repository_fields:
## EXTRA FIELDS
%for field in c.repo_fields: