diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-10-05 08:46:39 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-10-05 08:46:39 -0400 |
commit | 9159be81ec48dafa4ce0302418e5fcd2a95d734c (patch) | |
tree | 91e6fc577491d0ba73d8c24dd09c6e97a350064c /app/Template/task_creation | |
parent | 1c0fad6e129aa390ae0926718c2c1d041959d2a3 (diff) | |
parent | b18e3d6a5c25cfbfc87ee4d62231ff8a2866da52 (diff) |
Merge pull-request #2707
Diffstat (limited to 'app/Template/task_creation')
-rw-r--r-- | app/Template/task_creation/show.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/Template/task_creation/show.php b/app/Template/task_creation/show.php index c2cc4aac..0c267aff 100644 --- a/app/Template/task_creation/show.php +++ b/app/Template/task_creation/show.php @@ -10,13 +10,14 @@ <?= $this->task->selectTitle($values, $errors) ?> <?= $this->task->selectDescription($values, $errors) ?> <?= $this->task->selectTags($project) ?> - + + <?= $this->hook->render('template:task:form:first-column', array('values' => $values, 'errors' => $errors)) ?> + <?php if (! isset($duplicate)): ?> <?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> <?= $this->form->checkbox('duplicate_multiple_projects', t('Duplicate to multiple projects'), 1) ?> <?php endif ?> - <?= $this->hook->render('template:task:form:first-column', array('values' => $values, 'errors' => $errors)) ?> </div> <div class="form-column"> |