summaryrefslogtreecommitdiff
path: root/app/Template/custom_filter/remove.php
blob: 1c576fa20c1f021569fee7571d2f15dff1c826c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="page-header">
    <h2><?= t('Remove a custom filter') ?></h2>
</div>

<div class="confirm">
    <p class="alert alert-info">
        <?= t('Do you really want to remove this custom filter: "%s"?', $filter['name']) ?>
    </p>

    <?= $this->modal->confirmButtons(
        'CustomFilterController',
        'remove',
        array('project_id' => $project['id'], 'filter_id' => $filter['id'])
    ) ?>
</div>