summaryrefslogtreecommitdiff
path: root/templates/pigeonholes_input_mini_inc.tpl
blob: 99fa2e9b8dac3fcc8a4625b29de422d8544e42ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{strip}
<div class="row">
	{formlabel label="Categorise" for="pigeonholes"}
	{if $pigeonPathList|@count ne 0}
		{forminput}
			{if $pigeonPathList|@count < $gBitSystem->getConfig( 'pigeonholes_scrolling_list_number' )}
				{foreach from=$pigeonPathList key=pigeonId item=path}
					<label>
						<input type="checkbox" value="{$pigeonId}" {if $path.0.selected}checked="checked" {/if}name="pigeonholes[pigeonhole][]" />
						{foreach from=$path item=node}
							{if $node.parent_id} &raquo;{/if} {$node.title|escape}
						{/foreach}
						<br />
					</label>
				{/foreach}
			{else}
				<select name="pigeonholes[pigeonhole][]" id="pigeonholes" multiple="multiple" size="6">
					{foreach from=$pigeonPathList key=pigeonId item=path}
						<option value="{$pigeonId}" {if $path.0.selected}selected="selected"{/if}>
							{foreach from=$path item=node}
								{if $node.parent_id} &raquo;{/if} {$node.title|escape}
							{/foreach}
						</option>
					{/foreach}
				</select>
			{/if}
		{/forminput}
	{else}
		{forminput}
			<p>{tr}There are no categories available at the moment.{/tr}</p>
			{if $gBitUser->isAdmin()}
				{smartlink ititle="Create Category" ipackage="pigeonholes" ifile="edit_pigeonholes.php"}
			{/if}
		{/forminput}
	{/if}
</div>
{/strip}