blob: 031ab700040ab6f53db9f29da7fb23eddee4109a (
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>{'Albums 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 albums'|@translate}</legend>
<form method="post" action="{$F_ACTION}">
{$DOUBLE_SELECT}
</form>
</fieldset>
|