view kallithea/templates/admin/permissions/permissions_globals.html @ 8834:516a43cbd814

Merge stable
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 07 Jan 2021 03:28:37 +0100
parents 2ce710e81e61 7643d8ecbb20
children
line wrap: on
line source

${h.form(url('admin_permissions'), method='post')}
    <div class="form">
            <div class="form-group">
                <label class="control-label" for="anonymous">${_('Anonymous access')}:</label>
                <div class="form-inline">
                    <label>
                        ${h.checkbox('anonymous',True)}
                        <span>${_('Allow anonymous access')}</span>
                    </label>
                    <span class="help-block">${h.HTML(_('Allow access to Kallithea without needing to log in. Anonymous users use %s user permissions.')) % (h.link_to('*default*',h.url('admin_permissions_perms')))}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_repo_perm">${_('Repository')}:</label>
                <div class="form-inline">
                    ${h.select('default_repo_perm','',c.repo_perms_choices,class_='form-control')}
                    <label>
                        ${h.checkbox('overwrite_default_repo','true')}
                        <span data-toggle="tooltip" title="${_('All default permissions on each repository will be reset to chosen permission, note that all custom default permission on repositories will be lost')}">
                            ${_('Apply to all existing repositories')}
                        </span>
                    </label>
                    <span class="help-block">${_('Permissions for the Default user on new repositories.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_group_perm">${_('Repository group')}:</label>
                <div class="form-inline">
                    ${h.select('default_group_perm','',c.group_perms_choices,class_='form-control')}
                    <label>
                        ${h.checkbox('overwrite_default_group','true')}
                        <span data-toggle="tooltip" title="${_('All default permissions on each repository group will be reset to chosen permission, note that all custom default permission on repository groups will be lost')}">
                            ${_('Apply to all existing repository groups')}
                        </span>
                    </label>
                    <span class="help-block">${_('Permissions for the Default user on new repository groups.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_user_group_perm">${_('User group')}:</label>
                <div class="form-inline">
                    ${h.select('default_user_group_perm','',c.user_group_perms_choices,class_='form-control')}
                    <label>
                        ${h.checkbox('overwrite_default_user_group','true')}
                        <span data-toggle="tooltip" title="${_('All default permissions on each user group will be reset to chosen permission, note that all custom default permission on user groups will be lost')}">
                            ${_('Apply to all existing user groups')}
                        </span>
                    </label>
                    <span class="help-block">${_('Permissions for the Default user on new user groups.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_repo_create">${_('Top level repository creation')}:</label>
                <div>
                    ${h.select('default_repo_create','',c.repo_create_choices,class_='form-control')}
                    <span class="help-block">${_('Enable this to allow non-admins to create repositories at the top level.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_user_group_create">${_('User group creation')}:</label>
                <div>
                    ${h.select('default_user_group_create','',c.user_group_create_choices,class_='form-control')}
                    <span class="help-block">${_('Enable this to allow non-admins to create user groups.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_fork">${_('Repository forking')}:</label>
                <div>
                    ${h.select('default_fork','',c.fork_choices,class_='form-control')}
                    <span class="help-block">${_('Enable this to allow non-admins to fork repositories.')}</span>
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_register">${_('Registration')}:</label>
                <div>
                    ${h.select('default_register','',c.register_choices,class_='form-control')}
                </div>
            </div>
            <div class="form-group">
                <label class="control-label" for="default_extern_activate">${_('External auth account activation')}:</label>
                <div>
                    ${h.select('default_extern_activate','',c.extern_activate_choices,class_='form-control')}
                </div>
            </div>
            <div class="form-group">
                <div class="buttons">
                    ${h.submit('save',_('Save'),class_="btn btn-default")}
                    ${h.reset('reset',_('Reset'),class_="btn btn-default")}
                </div>
            </div>
    </div>
${h.end_form()}