blob: cfcb4220f32920ea1019ba0e6b33965f457ca862 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{* $Id: /piwigo/trunk/admin/template/goto/user_perm.tpl 6371 2008-09-14T12:25:34.485116Z vdigital $ *}
<h2>{$TITLE}</h2>
{if isset($categories_because_of_groups) }
<fieldset>
<legend>{'Categories authorized thanks to group associations'|@translate}</legend>
<ul>
{foreach from=$categories_because_of_groups item=cat }
<li>{$cat}</li>
{/foreach}
</ul>
</fieldset>
{/if}
<fieldset>
<legend>{'Other private categories'|@translate}</legend>
<form method="post" action="{$F_ACTION}">
{$DOUBLE_SELECT}
</form>
</fieldset>
|