Remove the columns list from the edit task form

This commit is contained in:
Frédéric Guillot 2014-09-08 20:26:31 +02:00
parent 9d39943bd4
commit 7540e74a56
2 changed files with 0 additions and 4 deletions

View File

@ -168,7 +168,6 @@ class Task extends Base
'values' => $task,
'errors' => array(),
'task' => $task,
'columns_list' => $this->board->getColumnsList($task['project_id']),
'users_list' => $this->project->getUsersList($task['project_id']),
'colors_list' => $this->task->getColors(),
'categories_list' => $this->category->getList($task['project_id']),

View File

@ -33,9 +33,6 @@
<?= Helper\form_label(t('Category'), 'category_id') ?>
<?= Helper\form_select('category_id', $categories_list, $values, $errors) ?><br/>
<?= Helper\form_label(t('Column'), 'column_id') ?>
<?= Helper\form_select('column_id', $columns_list, $values, $errors) ?><br/>
<?= Helper\form_label(t('Color'), 'color_id') ?>
<?= Helper\form_select('color_id', $colors_list, $values, $errors) ?><br/>