mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
No EOL
635 B
PHP
15 lines
No EOL
635 B
PHP
<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>
|
|
|
|
<div class="form-actions">
|
|
<?= $this->url->link(t('Yes'), 'taskstatus', 'open', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'confirmation' => 'yes'), true, 'btn btn-red popover-link') ?>
|
|
<?= t('or') ?>
|
|
<?= $this->url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?>
|
|
</div>
|
|
</div>
|