blob: f60a8e7515f5115ac3aa5eaa9060ca5496313036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<div class="page-header">
<h2><?= t('Predefined Task Description') ?></h2>
</div>
<div class="confirm">
<p class="alert alert-info">
<?= t('Do you really want to remove this template? "%s"', $template['title']) ?>
</p>
<?= $this->modal->confirmButtons(
'PredefinedTaskDescriptionController',
'remove',
array('project_id' => $project['id'], 'id' => $template['id'])
) ?>
</div>
|