mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 17:32:25 +02:00
a291085987
- feature 195 : add an "Admin" link under "Home" in the menu bar of the admin page git-svn-id: http://piwigo.org/svn/trunk@948 68402e56-0260-453c-a942-63ccdbb3a9ee
29 lines
1.0 KiB
Smarty
29 lines
1.0 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>
|