source: trunk/template/cclear/admin/group_list.tpl @ 852

Last change on this file since 852 was 850, checked in by plg, 19 years ago
  • new : HTML BODY identifier to let CSS stylesheets manage specific behaviour.
  • deletion : admin/search useless
  • improvement : in admin/user_list, special behaviour for true/false fields (expand, show_comments)
  • new : gallery_title and gallery_description are displayed at the top of each page.
  • improvement : simplification in HTML for categories menu.
  • improvement : standardization of presentation in all public pages (identification, registration, search, profile, notification, comments, etc.)

(not in ChangeLog, below this line)

  • add forgotten notification.php (should have been added in a previous commit)
  • [template cclear] deletion of useless class .bouton
  • [template cclear] for test purpose, new presentation of register page (using FORM.filter)
  • [template cclear] adaptation of admin/group_list from template default
  • [template cclear] deletion of obsolete admin/infos_images
  • [template cclear] deletion of obsolete admin/search_username
  • [template cclear] new icon register.png
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1005 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/default/theme/permissions.png" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
23      <a href="{group.U_DELETE}"><img src="./template/default/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.