diff options
Diffstat (limited to 'app/Template/task_gantt_creation/show.php')
-rw-r--r-- | app/Template/task_gantt_creation/show.php | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/app/Template/task_gantt_creation/show.php b/app/Template/task_gantt_creation/show.php new file mode 100644 index 00000000..683bc8c8 --- /dev/null +++ b/app/Template/task_gantt_creation/show.php @@ -0,0 +1,35 @@ +<div class="page-header"> + <h2><?= t('New task') ?></h2> +</div> +<form method="post" action="<?= $this->url->href('TaskGanttCreationController', 'save', array('project_id' => $values['project_id'])) ?>" autocomplete="off"> + <?= $this->form->csrf() ?> + <?= $this->form->hidden('project_id', $values) ?> + <?= $this->form->hidden('column_id', $values) ?> + <?= $this->form->hidden('position', $values) ?> + + <div class="form-column"> + <?= $this->form->label(t('Title'), 'title') ?> + <?= $this->form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="200"', 'tabindex="1"'), 'form-input-large') ?> + + <?= $this->form->label(t('Description'), 'description') ?> + <?= $this->form->textarea('description', $values, $errors, array('placeholder="'.t('Leave a description').'"', 'tabindex="2"'), 'markdown-editor') ?> + + <?= $this->render('task/color_picker', array('colors_list' => $colors_list, 'values' => $values)) ?> + </div> + + <div class="form-column"> + <?= $this->task->selectAssignee($users_list, $values, $errors) ?> + <?= $this->task->selectCategory($categories_list, $values, $errors) ?> + <?= $this->task->selectSwimlane($swimlanes_list, $values, $errors) ?> + <?= $this->task->selectPriority($project, $values) ?> + <?= $this->task->selectScore($values, $errors) ?> + <?= $this->task->selectStartDate($values, $errors) ?> + <?= $this->task->selectDueDate($values, $errors) ?> + </div> + + <div class="form-actions"> + <button type="submit" class="btn btn-blue" tabindex="15"><?= t('Save') ?></button> + <?= t('or') ?> + <?= $this->url->link(t('cancel'), 'TaskGanttController', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?> + </div> +</form> |