blob: c8518993bb6e1e6ad7455af78aced2225da53312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="page-header">
<h2><?= t('Reopen a project') ?></h2>
</div>
<div class="confirm">
<p class="alert alert-info">
<?= t('Do you really want to reopen this project: "%s"?', $project['name']) ?>
</p>
<?= $this->modal->confirmButtons(
'ProjectStatusController',
'enable',
array('project_id' => $project['id'])
) ?>
</div>
|