feature 1502: based on Dotclear model, P@t has reorganized the way Piwigo
manages template/theme in a simpler "theme only level" architecture. It supports multiple level inheritance. git-svn-id: http://piwigo.org/svn/trunk@5123 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
c396f08708
commit
14778ce673
615 changed files with 652 additions and 648 deletions
42
admin/themes/default/template/group_list.tpl
Normal file
42
admin/themes/default/template/group_list.tpl
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
<div class="titrePage">
|
||||
<h2>{'Group management'|@translate}</h2>
|
||||
</div>
|
||||
|
||||
<form method="post" name="add_user" action="{$F_ADD_ACTION}" class="properties">
|
||||
<fieldset>
|
||||
<legend>{'Add group'|@translate}</legend>
|
||||
|
||||
<span class="property">
|
||||
<label for="groupname">{'Group name'|@translate}</label>
|
||||
</span>
|
||||
<input type="text" id="groupname" name="groupname" maxlength="50" size="20">
|
||||
|
||||
<p>
|
||||
<input class="submit" type="submit" name="submit_add" value="{'Add'|@translate}" {$TAG_INPUT_ENABLED}>
|
||||
</p>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<table class="table2">
|
||||
<tr class="throw">
|
||||
<th>{'Group name'|@translate}</th>
|
||||
<th>{'Members'|@translate}</th>
|
||||
<th>{'Actions'|@translate}</th>
|
||||
</tr>
|
||||
{if not empty($groups)}
|
||||
{foreach from=$groups item=group name=group_loop}
|
||||
<tr class="{if $smarty.foreach.group_loop.index is odd}row1{else}row2{/if}">
|
||||
<td>{$group.NAME}<i><small>{$group.IS_DEFAULT}</small></i></td>
|
||||
<td><a href="{$group.U_MEMBERS}">{$group.MEMBERS}</a></td>
|
||||
<td style="text-align:center;">
|
||||
<a href="{$group.U_PERM}">
|
||||
<img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/permissions.png" class="button" style="border:none" alt="{'Permissions'|@translate}" title="{'Permissions'|@translate}"></a>
|
||||
<a href="{$group.U_DELETE}" onclick="return confirm('{'delete'|@translate|@escape:'javascript'}' + '\n\n' + '{'Are you sure?'|@translate|@escape:'javascript'}');">
|
||||
<img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/delete.png" class="button" style="border:none" alt="{'Delete'|@translate}" title="{'Delete'|@translate}" {$TAG_INPUT_ENABLED}></a>
|
||||
<a href="{$group.U_ISDEFAULT}" onclick="return confirm('{'Toggle \'default group\' property'|@translate|@escape:'javascript'}' +'\n\n' + '{'Are you sure?'|@translate|@escape:'javascript'}');">
|
||||
<img src="{$ROOT_URL}{$themeconf.admin_icon_dir}/toggle_is_default_group.png" class="button" style="border:none" alt="{'Toggle \'default group\' property'|@translate}" title="{'Toggle \'default group\' property'|@translate}" {$TAG_INPUT_ENABLED}></a>
|
||||
</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{/if}
|
||||
</table>
|
||||
Loading…
Add table
Add a link
Reference in a new issue