Add column to show dashboard visibility
This commit is contained in:
@@ -16,7 +16,8 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th class="column-70"><?= t('Column title') ?></th>
|
<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>
|
<th class="column-5"><?= t('Actions') ?></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
@@ -35,6 +36,9 @@
|
|||||||
<td>
|
<td>
|
||||||
<?= $this->text->e($column['task_limit']) ?>
|
<?= $this->text->e($column['task_limit']) ?>
|
||||||
</td>
|
</td>
|
||||||
|
<td>
|
||||||
|
<?= $column['hide_in_dashboard'] == 1 ? t('Yes') : t('No') ?>
|
||||||
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="dropdown">
|
<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>
|
<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>
|
||||||
|
|||||||
Reference in New Issue
Block a user