summaryrefslogtreecommitdiff
path: root/app/Template/subtask
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/subtask')
-rw-r--r--app/Template/subtask/create.php15
-rw-r--r--app/Template/subtask/edit.php2
-rw-r--r--app/Template/subtask/table.php2
3 files changed, 13 insertions, 6 deletions
diff --git a/app/Template/subtask/create.php b/app/Template/subtask/create.php
index 96ad7a46..1ed36d47 100644
--- a/app/Template/subtask/create.php
+++ b/app/Template/subtask/create.php
@@ -2,11 +2,20 @@
<h2><?= t('Add a sub-task') ?></h2>
</div>
-<form method="post" action="<?= $this->url->href('SubtaskController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
+<?php if (isset($values['subtasks_added']) && $values['subtasks_added'] > 0): ?>
+ <p class="alert alert-success">
+ <?php if ($values['subtasks_added'] == 1): ?>
+ <?= t('Subtask added successfully.') ?>
+ <?php else: ?>
+ <?= t('%d subtasks added successfully.', $values['subtasks_added']) ?>
+ <?php endif ?>
+ </p>
+<?php endif ?>
+<form method="post" action="<?= $this->url->href('SubtaskController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
- <?= $this->form->hidden('task_id', $values) ?>
- <?= $this->subtask->renderTitleField($values, $errors, array('autofocus')) ?>
+
+ <?= $this->subtask->renderBulkTitleField($values, $errors, array('autofocus')) ?>
<?= $this->subtask->renderAssigneeField($users_list, $values, $errors) ?>
<?= $this->subtask->renderTimeEstimatedField($values, $errors) ?>
diff --git a/app/Template/subtask/edit.php b/app/Template/subtask/edit.php
index 7c0266a8..aed57e95 100644
--- a/app/Template/subtask/edit.php
+++ b/app/Template/subtask/edit.php
@@ -4,8 +4,6 @@
<form method="post" action="<?= $this->url->href('SubtaskController', 'update', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
- <?= $this->form->hidden('id', $values) ?>
- <?= $this->form->hidden('task_id', $values) ?>
<?= $this->subtask->renderTitleField($values, $errors, array('autofocus')) ?>
<?= $this->subtask->renderAssigneeField($users_list, $values, $errors) ?>
diff --git a/app/Template/subtask/table.php b/app/Template/subtask/table.php
index 5488796d..e1bca500 100644
--- a/app/Template/subtask/table.php
+++ b/app/Template/subtask/table.php
@@ -21,7 +21,7 @@
'task' => $task,
'subtask' => $subtask,
)) ?>
- <?= $this->subtask->renderToggleStatus($task, $subtask, true) ?>
+ <?= $this->subtask->renderToggleStatus($task, $subtask, 'table') ?>
<?php else: ?>
<?= $this->subtask->renderTitle($subtask) ?>
<?php endif ?>