mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
15 lines
No EOL
569 B
PHP
15 lines
No EOL
569 B
PHP
<div class="page-header">
|
|
<h2><?= t('Duplicate a task') ?></h2>
|
|
</div>
|
|
|
|
<div class="confirm">
|
|
<p class="alert alert-info">
|
|
<?= t('Do you really want to duplicate this task?') ?>
|
|
</p>
|
|
|
|
<div class="form-actions">
|
|
<?= $this->a(t('Yes'), 'task', 'duplicate', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'confirmation' => 'yes'), true, 'btn btn-red') ?>
|
|
<?= t('or') ?>
|
|
<?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
|
|
</div>
|
|
</div>
|