summaryrefslogtreecommitdiff
path: root/app/Template/subtask_converter
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-17 22:08:57 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-17 22:08:57 -0400
commit996997a12d1b435956a96640eb6cf39045f6ef46 (patch)
tree1512126636270a97b22a7ace83657289fc55a4c4 /app/Template/subtask_converter
parentd8472d17bd1cd0aa996b6f19288e5e799a78ad65 (diff)
Added the possibility to convert a subtask to a task
Diffstat (limited to 'app/Template/subtask_converter')
-rw-r--r--app/Template/subtask_converter/show.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/Template/subtask_converter/show.php b/app/Template/subtask_converter/show.php
new file mode 100644
index 00000000..af8af49e
--- /dev/null
+++ b/app/Template/subtask_converter/show.php
@@ -0,0 +1,20 @@
+<div class="page-header">
+ <h2><?= t('Convert sub-task to task') ?></h2>
+</div>
+
+<div class="confirm">
+ <div class="alert alert-info">
+ <?= t('Do you really want to convert this sub-task to a task?') ?>
+ <ul>
+ <li>
+ <strong><?= $this->text->e($subtask['title']) ?></strong>
+ </li>
+ </ul>
+ </div>
+
+ <div class="form-actions">
+ <?= $this->url->link(t('Yes'), 'SubtaskConverterController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id']), true, 'btn btn-red') ?>
+ <?= t('or') ?>
+ <?= $this->url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?>
+ </div>
+</div>