diff options
Diffstat (limited to 'app/Template/column')
-rw-r--r-- | app/Template/column/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index 0b14e341..6108661b 100644 --- a/app/Template/column/index.php +++ b/app/Template/column/index.php @@ -15,7 +15,7 @@ data-save-position-url="<?= $this->url->href('ColumnController', 'move', array('project_id' => $project['id'])) ?>"> <thead> <tr> - <th class="column-40"><?= t('Column title') ?></th> + <th class="column-40"><?= t('Column') ?></th> <th class="column-10"><?= t('Task limit') ?></th> <th class="column-20"><?= t('Visible on dashboard') ?></th> <th class="column-10"><?= t('Open tasks') ?></th> @@ -36,10 +36,10 @@ <?php endif ?> </td> <td> - <?= $this->text->e($column['task_limit']) ?> + <?= $column['task_limit'] ?: '∞' ?> </td> <td> - <?= $column['hide_in_dashboard'] == 1 ? t('Yes') : t('No') ?> + <?= $column['hide_in_dashboard'] == 0 ? t('Yes') : t('No') ?> </td> <td> <?= $column['nb_open_tasks'] ?> |