diff options
Diffstat (limited to 'templates/board_edit.php')
-rw-r--r-- | templates/board_edit.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/board_edit.php b/templates/board_edit.php index 605773ae..800e1c1d 100644 --- a/templates/board_edit.php +++ b/templates/board_edit.php @@ -12,9 +12,10 @@ <?php $i = 0; ?> - <?php foreach ($columns as $column_id => $column_title): ?> - <?= Helper\form_label(t('Column %d', ++$i), 'title['.$column_id.']') ?> - <?= Helper\form_text('title['.$column_id.']', $values, $errors, array('required')) ?> + <?php foreach ($columns as $column): ?> + <?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']') ?> + <?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?> + <?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?> <a href="?controller=board&action=confirm&project_id=<?= $project['id'] ?>&column_id=<?= $column_id ?>"><?= t('Remove') ?></a> <?php endforeach ?> |