view rhodecode/templates/admin/users/user_edit.html @ 2453:d2a528b60e50 beta

whitespace cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 14 Jun 2012 02:06:35 +0200
parents 751c1c56e080
children 1f9c467e01eb
line wrap: on
line source

## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>

<%def name="title()">
    ${_('Edit user')} ${c.user.username} - ${c.rhodecode_name}
</%def>

<%def name="breadcrumbs_links()">
    ${h.link_to(_('Admin'),h.url('admin_home'))}
    &raquo;
    ${h.link_to(_('Users'),h.url('users'))}
    &raquo;
    ${_('edit')} "${c.user.username}"
</%def>

<%def name="page_nav()">
	${self.menu('admin')}
</%def>

<%def name="main()">
<div class="box box-left">
    <!-- box / title -->
    <div class="title">
        ${self.breadcrumbs()}
    </div>
    <!-- end box / title -->
    ${h.form(url('update_user', id=c.user.user_id),method='put')}
    <div class="form">
        <div class="field">
           <div class="gravatar_box">
               <div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(c.user.email)}"/></div>
                <p>
                %if c.use_gravatar:
                <strong>${_('Change your avatar at')} <a href="http://gravatar.com">gravatar.com</a></strong>
                <br/>${_('Using')} ${c.user.email}
                %else:
                <br/>${c.user.email}
                %endif
           </div>
        </div>
        <div class="field">
            <div class="label">
                <label>${_('API key')}</label> ${c.user.api_key}
            </div>
        </div>

        <div class="fields">
             <div class="field">
                <div class="label">
                    <label for="username">${_('Username')}:</label>
                </div>
                <div class="input">
                    ${h.text('username',class_='medium')}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="ldap_dn">${_('LDAP DN')}:</label>
                </div>
                <div class="input">
                    ${h.text('ldap_dn',class_='medium disabled',readonly="readonly")}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="new_password">${_('New password')}:</label>
                </div>
                <div class="input">
                    ${h.password('new_password',class_='medium',autocomplete="off")}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="password_confirmation">${_('New password confirmation')}:</label>
                </div>
                <div class="input">
                    ${h.password('password_confirmation',class_="medium",autocomplete="off")}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="name">${_('First Name')}:</label>
                </div>
                <div class="input">
                    ${h.text('name',class_='medium')}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="lastname">${_('Last Name')}:</label>
                </div>
                <div class="input">
                    ${h.text('lastname',class_='medium')}
                </div>
             </div>

             <div class="field">
                <div class="label">
                    <label for="email">${_('Email')}:</label>
                </div>
                <div class="input">
                    ${h.text('email',class_='medium')}
                </div>
             </div>

             <div class="field">
                <div class="label label-checkbox">
                    <label for="active">${_('Active')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('active',value=True)}
                </div>
             </div>

             <div class="field">
                <div class="label label-checkbox">
                    <label for="admin">${_('Admin')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('admin',value=True)}
                </div>
             </div>
            <div class="buttons">
              ${h.submit('save',_('Save'),class_="ui-button")}
              ${h.reset('reset',_('Reset'),class_="ui-button")}
            </div>
    	</div>
    </div>
    ${h.end_form()}
</div>
<div class="box box-right">
    <!-- box / title -->
    <div class="title">
        <h5>${_('Permissions')}</h5>
    </div>
    ${h.form(url('user_perm', id=c.user.user_id),method='put')}
    <div class="form">
        <!-- fields -->
        <div class="fields">
             <div class="field">
                <div class="label label-checkbox">
                    <label for="create_repo_perm">${_('Create repositories')}:</label>
                </div>
                <div class="checkboxes">
                    ${h.checkbox('create_repo_perm',value=True)}
                </div>
             </div>
            <div class="buttons">
              ${h.submit('save',_('Save'),class_="ui-button")}
              ${h.reset('reset',_('Reset'),class_="ui-button")}
            </div>
        </div>
    </div>
    ${h.end_form()}

    ## permissions overview
    <div id="perms" class="table">
           %for section in sorted(c.perm_user.permissions.keys()):
              <div class="perms_section_head">${section.replace("_"," ").capitalize()}</div>

              <div id='tbl_list_wrap_${section}' class="yui-skin-sam">
               <table id="tbl_list_${section}">
                <thead>
                    <tr>
                    <th class="left">${_('Name')}</th>
                    <th class="left">${_('Permission')}</th>
                </thead>
                <tbody>
                %for k in c.perm_user.permissions[section]:
                     <%
                     if section != 'global':
                         section_perm = c.perm_user.permissions[section].get(k)
                         _perm = section_perm.split('.')[-1]
                     else:
                         _perm = section_perm = None
                     %>
                    <tr>
                        <td>
                            %if section == 'repositories':
                                <a href="${h.url('summary_home',repo_name=k)}">${k}</a>
                            %elif section == 'repositories_groups':
                                <a href="${h.url('repos_group_home',group_name=k)}">${k}</a>
                            %else:
                                ${k}
                            %endif
                        </td>
                        <td>
                            %if section == 'global':
                             ${h.bool2icon(True)}
                            %else:
                            <span class="perm_tag ${_perm}">${section_perm}</span>
                            %endif
                         </td>
                    </tr>
                %endfor
                </tbody>
               </table>
              </div>
           %endfor
    </div>
</div>
</%def>