blob: d1ecdca9a20e6bc47aa7d1140d51d1234c26b92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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>
|