diff options
Diffstat (limited to 'app/Templates/task_close.php')
-rw-r--r-- | app/Templates/task_close.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Templates/task_close.php b/app/Templates/task_close.php new file mode 100644 index 00000000..3531b37d --- /dev/null +++ b/app/Templates/task_close.php @@ -0,0 +1,10 @@ +<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"> + <a href="?controller=task&action=close&task_id=<?= $task['id'] ?>" class="btn btn-red"><?= t('Yes') ?></a> + <?= t('or') ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> + </div> +</div>
\ No newline at end of file |