Add column to show dashboard visibility

This commit is contained in:
Frederic Guillot 2017-01-22 17:07:19 -05:00
parent 3be442bfc5
commit daffcd5fd6
1 changed files with 5 additions and 1 deletions

View File

@ -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>