From 401b0bdfb10ebfe75c9a392de52d37cc3c22c062 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 19 Jul 2015 18:14:20 -0400 Subject: Split task controller into smaller classes --- app/Template/task_creation/form.php | 84 +++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 app/Template/task_creation/form.php (limited to 'app/Template/task_creation/form.php') diff --git a/app/Template/task_creation/form.php b/app/Template/task_creation/form.php new file mode 100644 index 00000000..84f28a1e --- /dev/null +++ b/app/Template/task_creation/form.php @@ -0,0 +1,84 @@ + + + + + + +
+
+ + form->csrf() ?> + +
+ form->label(t('Title'), 'title') ?> + form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="200"', 'tabindex="1"'), 'form-input-large') ?>
+ + form->label(t('Description'), 'description') ?> + +
+
+ form->textarea('description', $values, $errors, array('placeholder="'.t('Leave a description').'"', 'tabindex="2"')) ?> +
+
+
+
+
    +
  • + +
  • +
  • + +
  • +
+
+ +
+ + + form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> + +
+ +
+ form->hidden('project_id', $values) ?> + + form->label(t('Assignee'), 'owner_id') ?> + form->select('owner_id', $users_list, $values, $errors, array('tabindex="3"')) ?>
+ + form->label(t('Category'), 'category_id') ?> + form->select('category_id', $categories_list, $values, $errors, array('tabindex="4"')) ?>
+ + + form->label(t('Swimlane'), 'swimlane_id') ?> + form->select('swimlane_id', $swimlanes_list, $values, $errors, array('tabindex="5"')) ?>
+ + + form->label(t('Column'), 'column_id') ?> + form->select('column_id', $columns_list, $values, $errors, array('tabindex="6"')) ?>
+ + form->label(t('Color'), 'color_id') ?> + form->select('color_id', $colors_list, $values, $errors, array('tabindex="7"')) ?>
+ + form->label(t('Complexity'), 'score') ?> + form->number('score', $values, $errors, array('tabindex="8"')) ?>
+ + form->label(t('Original estimate'), 'time_estimated') ?> + form->numeric('time_estimated', $values, $errors, array('tabindex="9"')) ?>
+ + form->label(t('Due Date'), 'date_due') ?> + form->text('date_due', $values, $errors, array('placeholder="'.$this->text->in($date_format, $date_formats).'"', 'tabindex="10"'), 'form-date') ?>
+
+
+ +
+ + url->link(t('cancel'), 'board', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?> +
+
+
-- cgit v1.2.3