1{extends 'layout_view.tpl'}
2
3{block name="title"}
4	{title}{$title|escape}{/title}
5{/block}
6
7{block name="content"}
8{if $trackerId}
9	<form class="simple" method="post" action="{service controller=tracker action=clear}">
10		<p>{tr _0=$name}Do you really want to clear all the items from tracker "%0"? (Note: there is no undo and notifications will not be sent.){/tr}</p>
11		<div class="submit">
12			<input type="hidden" name="confirm" value="1">
13			<input type="hidden" name="trackerId" value="{$trackerId|escape}">
14			<input type="submit" class="btn btn-danger" value="{tr}Clear All{/tr}">
15		</div>
16	</form>
17{else}
18	<a href="tiki-list_trackers.php">{tr}Back to tracker list{/tr}
19{/if}
20{/block}
21