2014-07-20 12:26:15 +02:00
|
|
|
<div class="page-header">
|
|
|
|
<h2><?= t('Close a task') ?></h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="confirm">
|
|
|
|
<p class="alert alert-info">
|
|
|
|
<?= t('Do you really want to close this task: "%s"?', Helper\escape($task['title'])) ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<div class="form-actions">
|
2014-10-22 19:59:09 +02:00
|
|
|
<a href="?controller=task&action=close&confirmation=yes&task_id=<?= $task['id'].Helper\param_csrf() ?>" class="btn btn-red"><?= t('Yes') ?></a>
|
2014-07-20 12:26:15 +02:00
|
|
|
<?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a>
|
|
|
|
</div>
|
|
|
|
</div>
|