##// END OF EJS Templates
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses....
pyro4: Add the custom header `X-RhodeCode-Backend` to the pyro4 backend responses. This custom header sets the SCM backend which is in use. It is used to identify VCS responses in the error handler. VCS responses are skipped during error handling.

File last commit:

r1:854a839a default
r848:2956cade default
Show More
user_group_edit_members.html
30 lines | 920 B | text/html | HtmlLexer
<%namespace name="base" file="/base/base.html"/>
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">${_('Members of User Group: %s') % c.user_group.users_group_name}</h3>
</div>
<div class="panel-body">
% if c.group_members_obj:
<table class="rctable group_members">
<tr>
<th>Username</th>
<th>Name</th>
</tr>
%for user in c.group_members_obj:
<tr>
<td class="td-author">
<div class="group_member">
${base.gravatar(user.email, 16)}
<span class="username user">${h.link_to(user.username, h.url( 'edit_user',user_id=user.user_id))}</span>
</div>
</td>
<td class="fullname">${user.full_name}</td>
</tr>
%endfor
</table>
%else:
<p class="empty_data">${_('No members yet')}</p>
%endif
</div>
</div>