diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-02-08 19:12:16 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-02-08 19:12:16 -0500 |
commit | 58d4231f06fbcbc54573504af2c2a4561b9e89ed (patch) | |
tree | 828837dd98873c1e83aac9cdd7a9cd367ec899a3 /app/Template/column | |
parent | 73dce1279760434e1d1b7a903a0a7500462d6f9c (diff) |
Improve columns table in project settings
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'] ?> |