Add column to show dashboard visibility
This commit is contained in:
parent
3be442bfc5
commit
daffcd5fd6
|
|
@ -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>
|
||||
|
|
@ -35,6 +36,9 @@
|
|||
<td>
|
||||
<?= $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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue