view rhodecode/templates/admin/repos/repo_add_base.html @ 3288:6cdf2cd9d9d8 beta

repo edit: it is a repo thing more than an admin thing - show it that way in ui and url
author Mads Kiilerich <madski@unity3d.com>
date Wed, 30 Jan 2013 21:13:47 +0100
parents 79c5967a1e5c
children 069884383cc7
line wrap: on
line source

## -*- coding: utf-8 -*-

${h.form(url('repos'))}
<div class="form">
    <!-- fields -->
    <div class="fields">
        <div class="field">
            <div class="label">
                <label for="repo_name">${_('Name')}:</label>
            </div>
            <div class="input">
                ${h.text('repo_name',c.new_repo,class_="small")}
                %if not h.HasPermissionAll('hg.admin')('repo create form'):
                    ${h.hidden('user_created',True)}
                %endif
            </div>
         </div>
        <div class="field">
            <div class="label">
                <label for="clone_uri">${_('Clone from')}:</label>
            </div>
            <div class="input">
                ${h.text('clone_uri',class_="small")}
                <span class="help-block">${_('Optional http[s] url from which repository should be cloned.')}</span>
            </div>
         </div>
         <div class="field">
             <div class="label">
                 <label for="repo_group">${_('Repository group')}:</label>
             </div>
             <div class="input">
                 ${h.select('repo_group',request.GET.get('parent_group'),c.repo_groups,class_="medium")}
                 <span class="help-block">${_('Optionaly select a group to put this repository into.')}</span>
             </div>
         </div>
        <div class="field">
            <div class="label">
                <label for="repo_type">${_('Type')}:</label>
            </div>
            <div class="input">
                ${h.select('repo_type','hg',c.backends,class_="small")}
                <span class="help-block">${_('Type of repository to create.')}</span>
            </div>
         </div>
         <div class="field">
            <div class="label">
                <label for="repo_landing_rev">${_('Landing revision')}:</label>
            </div>
            <div class="input">
                ${h.select('repo_landing_rev','',c.landing_revs,class_="medium")}
                <span class="help-block">${_('Default revision for files page, downloads, whoosh and readme')}</span>
            </div>
        </div>
        <div class="field">
            <div class="label label-textarea">
                <label for="repo_description">${_('Description')}:</label>
            </div>
            <div class="textarea text-area editor">
                ${h.textarea('repo_description')}
                <span class="help-block">${_('Keep it short and to the point. Use a README file for longer descriptions.')}</span>
            </div>
         </div>
        <div class="field">
            <div class="label label-checkbox">
                <label for="repo_private">${_('Private repository')}:</label>
            </div>
            <div class="checkboxes">
                ${h.checkbox('repo_private',value="True")}
                <span class="help-block">${_('Private repositories are only visible to people explicitly added as collaborators.')}</span>
            </div>
         </div>
        <div class="buttons">
          ${h.submit('add',_('add'),class_="ui-btn large")}
        </div>
    </div>
</div>
${h.end_form()}