## -*- coding: utf-8 -*- ${h.secure_form(h.route_path('repo_create'), request=request)}
${h.text('repo_name', class_="medium")} %if not c.rhodecode_user.is_admin: ${h.hidden('user_created',True)} %endif
${h.select('repo_group',request.GET.get('parent_group'),c.repo_groups,class_="medium")} % if c.personal_repo_group: ${_('Select my personal group (%(repo_group_name)s)') % {'repo_group_name': c.personal_repo_group.group_name}} % endif ${_('Optionally select a group to put this repository into.')}
% for backend in c.backends: % if loop.index == 0: % 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_copy_permissions', value="True", checked="checked")} ${_('Copy permissions from parent repository group.')}
${h.checkbox('repo_private',value="True")} ${_('Private repositories are only visible to people explicitly added as collaborators.')}
${h.submit('save',_('Create Repository'),class_="btn")}
${h.end_form()}