${h.secure_form(h.route_path('repo_create'), request=request)}
% if c.personal_repo_group: % endif ${h.select('repo_group', request.GET.get('parent_group'), c.repo_groups, class_="medium")}
/
${h.text('repo_name', class_="medium", id="repo_name_input", maxlength=192)}
${_('Repository Group / Repository Name')}.
## COPY PERMS
${h.checkbox('repo_copy_permissions', value="True", checked="checked")}
${_('Copy permissions from parent repository group.')}
%if not c.rhodecode_user.is_admin: ${h.hidden('user_created',True)} %endif
% for backend in c.backends: % if backend == c.default_backend: % else: % endif % endfor ${_('Set the type of repository to create.')}
${h.textarea('repo_description',cols=23,rows=5,class_="medium")} <% metatags_url = h.literal('''meta-tags''') %> % if c.visual.stylify_metatags: ${_('Plain text format with {metatags} support.').format(metatags=metatags_url)|n} % else: ${_('Plain text format.')} % endif ${_('Add 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_bootstrap_readme',value="True")} ${_('Initialize repository with a README. Allows you to immediately clone this project’s repository.')}
${h.submit('save',_('Create Repository'),class_="btn")}
${h.end_form()}