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