mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-04 12:32:48 +02:00
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 git-svn-id: http://piwigo.org/svn/trunk@850 68402e56-0260-453c-a942-63ccdbb3a9ee
28 lines
1005 B
Smarty
28 lines
1005 B
Smarty
<h2>{lang:title_groups}</h2>
|
|
|
|
<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">
|
|
<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>
|