diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-11-26 21:04:46 -0500 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-11-26 21:04:46 -0500 |
commit | 20b60bc628a7c28cb7780e06073df68a821adc19 (patch) | |
tree | b51360727b274cbab78771748cb0e87fc0c677c6 /app/Template/subtask/remove.php | |
parent | c6b9a2a92e60cb4488748d597a9df14c556236d3 (diff) |
Move subtask templates to a subfolder
Diffstat (limited to 'app/Template/subtask/remove.php')
-rw-r--r-- | app/Template/subtask/remove.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/Template/subtask/remove.php b/app/Template/subtask/remove.php new file mode 100644 index 00000000..74245a7a --- /dev/null +++ b/app/Template/subtask/remove.php @@ -0,0 +1,17 @@ +<div class="page-header"> + <h2><?= t('Remove a sub-task') ?></h2> +</div> + +<div class="confirm"> + <p class="alert alert-info"> + <?= t('Do you really want to remove this sub-task?') ?> + </p> + + <p><strong><?= Helper\escape($subtask['title']) ?></strong></p> + + <div class="form-actions"> + <?= Helper\a(t('Yes'), 'subtask', 'remove', array('task_id' => $task['id'], 'subtask_id' => $subtask['id']), true, 'btn btn-red') ?> + <?= t('or') ?> + <?= Helper\a(t('cancel'), 'task', 'show', array('task_id' => $task['id'])) ?> + </div> +</div>
\ No newline at end of file |