diff options
-rw-r--r-- | app/Template/column/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/column/index.php b/app/Template/column/index.php index 9e7ddfe8..eaaae332 100644 --- a/app/Template/column/index.php +++ b/app/Template/column/index.php @@ -16,7 +16,8 @@ <thead> <tr> <th class="column-70"><?= t('Column title') ?></th> - <th class="column-25"><?= t('Task limit') ?></th> + <th class="column-10"><?= t('Task limit') ?></th> + <th class="column-20"><?= t('Visible on dashboard') ?></th> <th class="column-5"><?= t('Actions') ?></th> </tr> </thead> @@ -36,6 +37,9 @@ <?= $this->text->e($column['task_limit']) ?> </td> <td> + <?= $column['hide_in_dashboard'] == 1 ? t('Yes') : t('No') ?> + </td> + <td> <div class="dropdown"> <a href="#" class="dropdown-menu dropdown-menu-link-icon"><i class="fa fa-cog fa-fw"></i><i class="fa fa-caret-down"></i></a> <ul> |