source: LATMOS-Accounts-Web/root/html/groups/users.tt @ 157

Last change on this file since 157 was 157, checked in by nanardon, 15 years ago
  • add users view in groups
  • Property svn:keywords set to Id Rev
File size: 416 bytes
Line 
1<!-- $Id$ -->
2[% IF NOT group %]
3No group [% groupname | html %] found.
4[% ELSE %]
5   
6<div class=objectform>
7[% INCLUDE 'groups/menu.tt' %]
8
9<table border=1>
10<tr><th>Membres</th></tr>
11[% FOREACH uid = group.get_c_field('member') %]
12[% IF loop.first %]
13<tr><td>
14[% END %]
15<a href="[% c.uri_for('/users', uid) %]">[% uid | html %]</a><br>
16[% IF loop.last %]
17</td></tr>
18[% END %]
19[% END %]
20</table>
21
22</div>
23[% END %]
Note: See TracBrowser for help on using the repository browser.