summaryrefslogtreecommitdiff
path: root/plugins/TaskIntervalButton/Template/task_add_interval/add_interval_confirm.php
blob: 21789f77a228952dbab31257d4ba68e08f833cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="page-header">
    <h2><?= t('Add interval') ?></h2>
</div>

<div class="confirm">
    <p class="alert alert-info">
        <?= t('Do you really want to add interval (30 minutes) to this task: "%s"?', $this->text->e($task['title'])) ?>
    </p>

    <?= $this->modal->confirmButtons(
        'TaskIntervalController',
        'addInterval',
        array('plugin' => 'TaskIntervalButton', 'task_id' => $task['id'], 'project_id' => $task['project_id'])
    ) ?>
</div>