You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
724 B

{extends 'layout_view.tpl'}
{block name="title"}
{title}{$title|escape}{/title}
{/block}
{block name="content"}
{if $schedulerId}
<form class="simple" method="post" action="{service controller=scheduler action=reset}">
{ticket mode='confirm'}
<p>{tr}Reset the scheduler, will mark this run as failed, allowing it to be executed again.{/tr}</p>
<div class="submit">
<input type="hidden" name="schedulerId" value="{$schedulerId|escape}">
<input type="hidden" name="startTime" value="{$startTime|escape}">
<input type="submit" class="btn btn-primary" value="{tr}Reset{/tr}">
</div>
</form>
{else}
<a href="tiki-admin_schedulers.php">{tr}Back to schedulers list{/tr}
{/if}
{/block}