##// END OF EJS Templates
licenses: Add tornado license information....
licenses: Add tornado license information. We are using a modified version of some code which originates from the tornado web server project. Therfore we include the original license information in our project to comply to the license.

File last commit:

r1:854a839a default
r476:16ff155b 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>