form->csrf() ?> form->hidden('project_id', $values) ?> form->hidden('column_id', $values) ?> form->hidden('position', $values) ?>
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"')) ?>
render('task/color_picker', array('colors_list' => $colors_list, 'values' => $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('Complexity'), 'score') ?> form->number('score', $values, $errors, array('tabindex="6"')) ?>
form->label(t('Start Date'), 'date_started') ?> form->text('date_started', $values, $errors, array('placeholder="'.$this->text->in($date_format, $date_formats).'"', 'tabindex="7"'), 'form-date') ?> form->label(t('Due Date'), 'date_due') ?> form->text('date_due', $values, $errors, array('placeholder="'.$this->text->in($date_format, $date_formats).'"', 'tabindex="8"'), 'form-date') ?>
url->link(t('cancel'), 'board', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?>