##// END OF EJS Templates
tests: Add a ``db`` fixture that initializes the database....
tests: Add a ``db`` fixture that initializes the database. This is quite useful if tests only need the database and not the whole app. Then only this fixture is needed instead of the full blown pylonsapp/app fixtures.

File last commit:

r1:854a839a default
r914:cf699af2 default
Show More
user_group_edit_members.html
30 lines | 920 B | text/html | HtmlLexer
/ rhodecode / templates / admin / user_groups / user_group_edit_members.html
project: added all source files and assets
r1 <%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>