##// END OF EJS Templates
When using tags in git use the link to Commit instead of messing with Tag object
When using tags in git use the link to Commit instead of messing with Tag object

File last commit:

r2416:44f328d6 beta
r2537:952dd2c9 beta
Show More
users.html
65 lines | 2.3 KiB | text/html | HtmlLexer
renamed project to rhodecode
r547 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
#38 updated RhodeCode titles
r619 ${_('Users administration')} - ${c.rhodecode_name}
renamed project to rhodecode
r547 </%def>
<%def name="breadcrumbs_links()">
${h.link_to(_('Admin'),h.url('admin_home'))} &raquo; ${_('Users')}
</%def>
<%def name="page_nav()">
${self.menu('admin')}
</%def>
<%def name="main()">
<div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
<ul class="links">
<li>
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 <span>${h.link_to(_(u'ADD NEW USER'),h.url('new_user'))}</span>
renamed project to rhodecode
r547 </li>
White-space cleanup
r1888
</ul>
renamed project to rhodecode
r547 </div>
<!-- end box / title -->
<div class="table">
<table class="table_disp">
<tr class="header">
<th></th>
<th class="left">${_('username')}</th>
<th class="left">${_('name')}</th>
<th class="left">${_('lastname')}</th>
added last login of user to admin users browse
r954 <th class="left">${_('last login')}</th>
renamed project to rhodecode
r547 <th class="left">${_('active')}</th>
<th class="left">${_('admin')}</th>
Added ldap info on admin users, added bool2icon helper for nicer representation of...
r712 <th class="left">${_('ldap')}</th>
renamed project to rhodecode
r547 <th class="left">${_('action')}</th>
</tr>
%for cnt,user in enumerate(c.users_list):
Vincent Duvert
Corrected default user filtering on the user administration page.
r2414 %if user.username !='default':
renamed project to rhodecode
r547 <tr class="parity${cnt%2}">
html w3c fixes
r714 <td><div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(user.email,24)}"/> </div></td>
renamed project to rhodecode
r547 <td>${h.link_to(user.username,h.url('edit_user', id=user.user_id))}</td>
<td>${user.name}</td>
<td>${user.lastname}</td>
Vincent Duvert
Added a translatable date formatter for every date displayed.
r2416 <td>${h.fmt_date(user.last_login)}</td>
Added ldap info on admin users, added bool2icon helper for nicer representation of...
r712 <td>${h.bool2icon(user.active)}</td>
<td>${h.bool2icon(user.admin)}</td>
Thayne Harbaugh
Improve LDAP authentication...
r991 <td>${h.bool2icon(bool(user.ldap_dn))}</td>
renamed project to rhodecode
r547 <td>
Fixed #161 form saves the create repository permission....
r1266 ${h.form(url('delete_user', id=user.user_id),method='delete')}
Augusto Herrmann
Added pt_BR localization, added i18n wrappers on some places missing, fixed css in settings screen for longer labels.
r1472 ${h.submit('remove_',_('delete'),id="remove_user_%s" % user.user_id,
more verbose removal messages
r1827 class_="delete_icon action_button",onclick="return confirm('"+_('Confirm to delete this user: %s') % user.username+"');")}
renamed project to rhodecode
r547 ${h.end_form()}
</td>
</tr>
%endif
%endfor
</table>
</div>
</div>
</%def>