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

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

fix bugs 244: different display of checkbox in IE/firefox and 484: Missing onfocus/onblur

in some user section *.tpl and many admin section *.tpl
handle FORM elements with a behaviour (inputfix.htc) in IE
the behaviour sets onfocus and onblur events too (no longer needed in *.tpl)
other browsers use css selector :focus and [type=_]

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1<!-- $Id: group_list.tpl 1491 2006-07-22 09:21:40Z 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
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" />
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.