Display at least the title when there is no custom filters
This commit is contained in:
parent
e766397be0
commit
d459bec035
|
|
@ -1,4 +1,3 @@
|
|||
<?php if (! empty($custom_filters)): ?>
|
||||
<div class="page-header">
|
||||
<h2><?= t('Custom filters') ?></h2>
|
||||
<ul>
|
||||
|
|
@ -7,47 +6,50 @@
|
|||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<table class="table-striped table-scrolling">
|
||||
<tr>
|
||||
<th class="column-15"><?= t('Name') ?></th>
|
||||
<th class="column-30"><?= t('Filter') ?></th>
|
||||
<th class="column-10"><?= t('Shared') ?></th>
|
||||
<th class="column-15"><?= t('Append/Replace') ?></th>
|
||||
<th class="column-25"><?= t('Owner') ?></th>
|
||||
<th class="column-5"><?= t('Actions') ?></th>
|
||||
</tr>
|
||||
<?php foreach ($custom_filters as $filter): ?>
|
||||
<tr>
|
||||
<td><?= $this->text->e($filter['name']) ?></td>
|
||||
<td><?= $this->text->e($filter['filter']) ?></td>
|
||||
<td>
|
||||
<?php if ($filter['is_shared'] == 1): ?>
|
||||
<?= t('Yes') ?>
|
||||
<?php else: ?>
|
||||
<?= t('No') ?>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
<td>
|
||||
<?php if ($filter['append'] == 1): ?>
|
||||
<?= t('Append') ?>
|
||||
<?php else: ?>
|
||||
<?= t('Replace') ?>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
<td><?= $this->text->e($filter['owner_name'] ?: $filter['owner_username']) ?></td>
|
||||
<td>
|
||||
<?php if ($filter['user_id'] == $this->user->getId() || $this->user->hasProjectAccess('CustomFilterController', 'edit', $project['id'])): ?>
|
||||
<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>
|
||||
<li><?= $this->modal->medium('edit', t('Edit'), 'CustomFilterController', 'edit', array('project_id' => $filter['project_id'], 'filter_id' => $filter['id'])) ?></li>
|
||||
<li><?= $this->modal->confirm('trash-o', t('Remove'), 'CustomFilterController', 'confirm', array('project_id' => $filter['project_id'], 'filter_id' => $filter['id'])) ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php if (! empty($custom_filters)): ?>
|
||||
<table class="table-striped table-scrolling">
|
||||
<tr>
|
||||
<th class="column-15"><?= t('Name') ?></th>
|
||||
<th class="column-30"><?= t('Filter') ?></th>
|
||||
<th class="column-10"><?= t('Shared') ?></th>
|
||||
<th class="column-15"><?= t('Append/Replace') ?></th>
|
||||
<th class="column-25"><?= t('Owner') ?></th>
|
||||
<th class="column-5"><?= t('Actions') ?></th>
|
||||
</tr>
|
||||
<?php foreach ($custom_filters as $filter): ?>
|
||||
<tr>
|
||||
<td><?= $this->text->e($filter['name']) ?></td>
|
||||
<td><?= $this->text->e($filter['filter']) ?></td>
|
||||
<td>
|
||||
<?php if ($filter['is_shared'] == 1): ?>
|
||||
<?= t('Yes') ?>
|
||||
<?php else: ?>
|
||||
<?= t('No') ?>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</table>
|
||||
</td>
|
||||
<td>
|
||||
<?php if ($filter['append'] == 1): ?>
|
||||
<?= t('Append') ?>
|
||||
<?php else: ?>
|
||||
<?= t('Replace') ?>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
<td><?= $this->text->e($filter['owner_name'] ?: $filter['owner_username']) ?></td>
|
||||
<td>
|
||||
<?php if ($filter['user_id'] == $this->user->getId() || $this->user->hasProjectAccess('CustomFilterController', 'edit', $project['id'])): ?>
|
||||
<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>
|
||||
<li><?= $this->modal->medium('edit', t('Edit'), 'CustomFilterController', 'edit', array('project_id' => $filter['project_id'], 'filter_id' => $filter['id'])) ?></li>
|
||||
<li><?= $this->modal->confirm('trash-o', t('Remove'), 'CustomFilterController', 'confirm', array('project_id' => $filter['project_id'], 'filter_id' => $filter['id'])) ?></li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php endforeach ?>
|
||||
</table>
|
||||
<?php else: ?>
|
||||
<p class="alert"><?= t('There is no custom filter.') ?></p>
|
||||
<?php endif ?>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue