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

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

    <?= $this->modal->confirmButtons(
        'ProjectTagController',
        'remove',
        array('tag_id' => $tag['id'], 'project_id' => $project['id'])
    ) ?>
</div>