source: trunk/template/yoga/admin/group_list.tpl @ 980

Last change on this file since 980 was 980, checked in by chrisaga, 18 years ago

template : {themeconf:icon_dir}/*.png in admin/*.tpl

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.0 KB
Line 
1<!-- $Id: group_list.tpl 980 2005-12-10 15:24:53Z chrisaga $ -->
2<h2>{lang:title_groups}</h2>
3
4<form method="post" name="add_user" action="{F_ADD_ACTION}" class="properties">
5  <fieldset>
6    <legend>{lang:Add group}</legend>
7    <label>{lang:Group name}</label><input type="text" name="groupname" maxlength="50" size="20" />
8    <p><input type="submit" name="submit_add" value="{lang:Add}" /></p>
9  </fieldset>
10</form>
11
12<table class="table2">
13  <tr class="throw">
14    <th>{lang:Group name}</th>
15    <th>{lang:Members}</th>
16    <th>{lang:Actions}</th>
17  </tr>
18  <!-- BEGIN group -->
19  <tr class="{group.CLASS}">
20    <td>{group.NAME}</td>
21    <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
22    <td style="text-align:center;">
23      <a href="{group.U_PERM}"><img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
24      <a href="{group.U_DELETE}"><img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" /></a>
25    </td>
26  </tr>
27  <!-- END group -->
28</table>
Note: See TracBrowser for help on using the repository browser.