blob: 42765e34028527002ca53f03d9a1eb0a3674cdf4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="page-header">
<h2><?= t('Open a task') ?></h2>
</div>
<div class="confirm">
<p class="alert alert-info">
<?= t('Do you really want to open this task: "%s"?', $task['title']) ?>
</p>
<?= $this->modal->confirmButtons(
'TaskStatusController',
'open',
array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'confirmation' => 'yes')
) ?>
</div>
|