]> WPIA git - gigi.git/blob - src/org/cacert/gigi/pages/statistics/StatisticsRoles.templ
add: add permission view
[gigi.git] / src / org / cacert / gigi / pages / statistics / StatisticsRoles.templ
1 <table class="table">
2     <tr>
3         <th>
4             <?=_Role?>
5         </th>
6         <th>
7             <?=_User Name?>
8         </th>
9         <th>
10             <?=_Email Address?>
11         </th>
12     </tr>
13 <? foreach($groups) {?>
14     <tr>
15         <th><?=$group_name?></th>
16         <th colspan="2"><?=_Total?>: <?=$count?></th>
17     </tr>
18     <? foreach($memberlist) {?>
19     <tr>
20         <td></td>
21         <td><?=$name?></td>
22         <td><?=$email?></td>
23     </tr>
24     <? } ?>
25 <? } ?>
26 </table>