mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-04 12:32:48 +02:00
included page, localized items are managed directly in the template. - new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering. - modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem). - improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div). - modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages). - deletion : no link to profile from admin/user_list anymore (no need). git-svn-id: http://piwigo.org/svn/trunk@817 68402e56-0260-453c-a942-63ccdbb3a9ee
28 lines
1.0 KiB
Smarty
28 lines
1.0 KiB
Smarty
<h1>{lang:title_groups}</h1>
|
|
|
|
<form class="filter" method="post" name="add_user" action="{F_ADD_ACTION}">
|
|
<fieldset>
|
|
<legend>{lang:Add group}</legend>
|
|
<label>{lang:Group name} <input type="text" name="groupname" maxlength="50" size="20" /></label>
|
|
<input type="submit" name="submit_add" value="{lang:Add}" />
|
|
</fieldset>
|
|
</form>
|
|
|
|
<table class="table2" style="width:100%;" >
|
|
<tr class="throw">
|
|
<th>{lang:Group name}</th>
|
|
<th>{lang:Members}</th>
|
|
<th>{lang:Actions}</th>
|
|
</tr>
|
|
<!-- BEGIN group -->
|
|
<tr class="{group.CLASS}">
|
|
<td>{group.NAME}</td>
|
|
<td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
|
|
<td style="text-align:center;">
|
|
<a href="{group.U_PERM}"><img src="./template/default/theme/permissions.png" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
|
|
<a href="{group.U_DELETE}"><img src="./template/default/theme/delete.png" style="border:none" alt="delete" title="{lang:delete}" /></a>
|
|
</td>
|
|
</tr>
|
|
<!-- END group -->
|
|
</table>
|