summaryrefslogtreecommitdiff
path: root/app/Template/project_status/enable.php
blob: fd8f8c7244a378c92156fb2c86504d23850b31c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="page-header">
    <h2><?= t('Project activation') ?></h2>
</div>

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

    <?= $this->modal->confirmButtons(
        'ProjectStatusController',
        'enable',
        array('project_id' => $project['id'])
    ) ?>
</div>