form->csrf() ?>
form->label(t('Title'), 'title') ?> form->text('title', $values, $errors, array('autofocus', 'required', 'maxlength="200"', 'tabindex="1"')) ?>
form->label(t('Description'), 'description') ?>
form->textarea( 'description', $values, $errors, array( 'placeholder="'.t('Leave a description').'"', 'tabindex="2"', 'data-mention-search-url="'.$this->url->href('UserHelper', 'mention', array('project_id' => $task['project_id'])).'"' ) ) ?>
render('task/color_picker', array('colors_list' => $colors_list, 'values' => $values)) ?>
form->hidden('id', $values) ?> 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('Complexity'), 'score') ?> form->number('score', $values, $errors, array('tabindex="6"')) ?>
form->label(t('Due Date'), 'date_due') ?> form->text('date_due', $values, $errors, array('placeholder="'.$this->text->in($date_format, $date_formats).'"', 'tabindex="7"'), 'form-date') ?>
url->link(t('cancel'), 'board', 'show', array('project_id' => $task['project_id']), false, 'close-popover') ?> url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>