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

Last change on this file since 1583 was 1583, checked in by rub, 18 years ago

Resolved Issue ID 0000526:

o Add default group to new user

Allow to have n default groups.
Property are save on table #_group and can be modified on administration group screen.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1<!-- $Id: group_list.tpl 1583 2006-10-30 23:34:31Z rub $ -->
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}<i><small>{group.IS_DEFAULT}</small></i></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      <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Are you sure?}');"><img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" alt="toggle_is_default_group" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a>
33    </td>
34  </tr>
35  <!-- END group -->
36</table>
Note: See TracBrowser for help on using the repository browser.