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

Last change on this file since 1376 was 1129, checked in by plg, 18 years ago

bug fixed: replace obsolet tn_width and tn_height language keys by their new
equivalent.

improvement: HTML properties forms rewritten to offer labelled Yes/No click
on checkboxes.

improvement: onblur onfocus attribute used on every HTML properties form.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.3 KB
Line 
1<!-- $Id: group_list.tpl 1129 2006-04-05 21:01:05Z plg $ -->
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
8    <span class="property">
9      <label for="groupname">{lang:Group name}</label>
10    </span>
11    <input type="text" id="groupname" name="groupname" maxlength="50" size="20" onfocus="this.className='focus';" onblur="this.className='nofocus';" />
12
13    <p>
14      <input type="submit" name="submit_add" value="{lang:Add}" {TAG_INPUT_ENABLED}/>
15    </p>
16  </fieldset>
17</form>
18
19<table class="table2">
20  <tr class="throw">
21    <th>{lang:Group name}</th>
22    <th>{lang:Members}</th>
23    <th>{lang:Actions}</th>
24  </tr>
25  <!-- BEGIN group -->
26  <tr class="{group.CLASS}">
27    <td>{group.NAME}</td>
28    <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
29    <td style="text-align:center;">
30      <a href="{group.U_PERM}"><img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
31      <a href="{group.U_DELETE}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a>
32    </td>
33  </tr>
34  <!-- END group -->
35</table>
Note: See TracBrowser for help on using the repository browser.