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

Last change on this file since 860 was 860, checked in by plg, 19 years ago

(not in ChangeLog)

  • yoga template used for installation and by default in user_infos table
  • adaptation of yoga template to itself (no use of icons from template default)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 999 bytes
Line 
1<h2>{lang:title_groups}</h2>
2
3<form class="filter" method="post" name="add_user" action="{F_ADD_ACTION}">
4  <fieldset>
5    <legend>{lang:Add group}</legend>
6    <label>{lang:Group name} <input type="text" name="groupname" maxlength="50" size="20" /></label>
7    <input type="submit" name="submit_add" value="{lang:Add}" />
8  </fieldset>
9</form>
10
11<table class="table2">
12  <tr class="throw">
13    <th>{lang:Group name}</th>
14    <th>{lang:Members}</th>
15    <th>{lang:Actions}</th>
16  </tr>
17  <!-- BEGIN group -->
18  <tr class="{group.CLASS}">
19    <td>{group.NAME}</td>
20    <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
21    <td style="text-align:center;">
22      <a href="{group.U_PERM}"><img src="./template/yoga/theme/permissions.png" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
23      <a href="{group.U_DELETE}"><img src="./template/yoga/theme/delete.png" style="border:none" alt="delete" title="{lang:delete}" /></a>
24    </td>
25  </tr>
26  <!-- END group -->
27</table>
Note: See TracBrowser for help on using the repository browser.