f280ff4b17
- added class="icon" to recent.png (functions_html.inc.php) - added class="button" to al png button images (*.tpl) - changed pngfix.js to only fix icon or button images template improvement: category prettier and simpler (a little bit) - got rid of one SPAN level - content.css more readable git-svn-id: http://piwigo.org/svn/branches/branch-1_5@939 68402e56-0260-453c-a942-63ccdbb3a9ee
28 lines
1 KiB
Smarty
28 lines
1 KiB
Smarty
<!-- $Id$ -->
|
|
<h2>{lang:title_groups}</h2>
|
|
|
|
<form method="post" name="add_user" action="{F_ADD_ACTION}" class="properties">
|
|
<fieldset>
|
|
<legend>{lang:Add group}</legend>
|
|
<label>{lang:Group name}</label><input type="text" name="groupname" maxlength="50" size="20" />
|
|
<p><input type="submit" name="submit_add" value="{lang:Add}" /></p>
|
|
</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/yoga/theme/permissions.png" class="button" style="border:none" alt="permissions" title="{lang:permissions}" /></a>
|
|
<a href="{group.U_DELETE}"><img src="./template/yoga/theme/delete.png" class="button" style="border:none" alt="delete" title="{lang:delete}" /></a>
|
|
</td>
|
|
</tr>
|
|
<!-- END group -->
|
|
</table>
|