|
|
<div id="calscreen">
|
|
|
|
|
|
<div style="float:right;margin:5px;">
|
|
|
{if $viewlist neq 'list'}
|
|
|
{if $group_by_item neq 'n'}
|
|
|
{button href="?gbi=n" _text=" {tr}Do not group by item{/tr}"}
|
|
|
{else}
|
|
|
{button href="?gbi=y" _text=" {tr}Group by item{/tr}"}
|
|
|
{/if}
|
|
|
{/if}
|
|
|
|
|
|
{button href="#" _onclick="toggle('filtercal');" _text="{tr}Filter{/tr}"}
|
|
|
|
|
|
{if $viewlist eq 'list'}
|
|
|
{button href="?viewlist=table" _text="{tr}Calendar View{/tr}"}
|
|
|
{else}
|
|
|
{button href="?viewlist=list" _text="{tr}List View{/tr}"}
|
|
|
{/if}
|
|
|
</div>
|
|
|
|
|
|
{title}{tr}Tiki Action Calendar{/tr}{/title}
|
|
|
|
|
|
<form id="filtercal" method="get" action="{$myurl}" name="f" style="display:none;">
|
|
|
<div class="caltitle">{tr}Tools Calendars{/tr}</div>
|
|
|
<div class="caltoggle">
|
|
|
{select_all checkbox_names='tikicals[]' label="{tr}Check / Uncheck All{/tr}"}
|
|
|
</div>
|
|
|
{foreach from=$tikiItems key=ki item=vi}
|
|
|
{if $vi.feature eq 'y' and $vi.right eq 'y'}
|
|
|
<div class="calcheckbox form-check"><input type="checkbox" class="form-check-input" name="tikicals[]" value="{$ki|escape}" id="tikical_{$ki}" {if in_array($ki,$tikicals)}checked="checked"{/if}>
|
|
|
<label for="tikical_{$ki}" class="form-check-label Cal{$ki}"> = {$vi.label}</label></div>
|
|
|
{/if}
|
|
|
{/foreach}
|
|
|
<div class="calinput"><input type="submit" class="btn btn-info btn-sm" name="refresh" value="{tr}Refresh{/tr}"></div>
|
|
|
</form>
|
|
|
|
|
|
{include file='tiki-calendar_nav.tpl'}
|
|
|
|
|
|
{if $viewlist eq 'list'}
|
|
|
{include file='tiki-calendar_listmode.tpl'}
|
|
|
{/if}
|
|
|
|
|
|
</div>
|
|
|
|