${_('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 above url guarantees that this repository will always be accessible under such url.
Useful for CI systems, or any other cases that you need to hardcode the url into 3rd party service.''')}
% if c.repo_info.repo_type != 'svn':
%if c.repo_info.clone_uri:
${c.repo_info.clone_uri_hidden}${_('edit')}
${h.text('clone_uri',class_="medium", placeholder=_('new value, leave empty to remove'))}
${h.hidden('clone_uri_change', 'OLD')}
${_('cancel')}
%else:
## not set yet, display form to set it
${h.text('clone_uri',class_="medium")}
${h.hidden('clone_uri_change', 'NEW')}
%endif
${_('http[s] url where from repository was imported, also used for doing remote pulls.')}
${_('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 automatic locking on repository. Pulling from this repository creates a lock that can be released by pushing back by the same user')}
%if c.visual.repository_fields:
## EXTRA FIELDS
%for field in c.repo_fields: