diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-01-25 14:56:02 -0500 |
commit | 9383a15af699ede77142d040b65118e15754a2ca (patch) | |
tree | b550b5adf5bcf8f5a8793c188cc5630f26a27d49 /templates/task_close.php |
First commit
Diffstat (limited to 'templates/task_close.php')
-rw-r--r-- | templates/task_close.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/task_close.php b/templates/task_close.php new file mode 100644 index 00000000..6bc32813 --- /dev/null +++ b/templates/task_close.php @@ -0,0 +1,16 @@ +<section id="main"> + <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"> + <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> +</section>
\ No newline at end of file |