From 996997a12d1b435956a96640eb6cf39045f6ef46 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Tue, 17 May 2016 22:08:57 -0400 Subject: Added the possibility to convert a subtask to a task --- app/Template/subtask/menu.php | 6 ++++++ app/Template/subtask/remove.php | 13 ++++++++----- app/Template/subtask_converter/show.php | 20 ++++++++++++++++++++ 3 files changed, 34 insertions(+), 5 deletions(-) create mode 100644 app/Template/subtask_converter/show.php (limited to 'app/Template') diff --git a/app/Template/subtask/menu.php b/app/Template/subtask/menu.php index 6c98b951..aa7b9a53 100644 --- a/app/Template/subtask/menu.php +++ b/app/Template/subtask/menu.php @@ -2,10 +2,16 @@ diff --git a/app/Template/subtask/remove.php b/app/Template/subtask/remove.php index 374256fd..7ea43555 100644 --- a/app/Template/subtask/remove.php +++ b/app/Template/subtask/remove.php @@ -3,15 +3,18 @@
-

+

-

- -

text->e($subtask['title']) ?>

+
    +
  • + text->e($subtask['title']) ?> +
  • +
+
url->link(t('Yes'), 'subtask', 'remove', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id']), true, 'btn btn-red') ?> url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?>
-
\ No newline at end of file + 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 @@ + + +
+
+ +
    +
  • + text->e($subtask['title']) ?> +
  • +
+
+ +
+ url->link(t('Yes'), 'SubtaskConverterController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id']), true, 'btn btn-red') ?> + + url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?> +
+
-- cgit v1.2.3