blob: 3183c82e74f94ee78f465f01ad19fadcf4d6ac65 (
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$ *}
<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>
|