mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
19 lines
813 B
PHP
19 lines
813 B
PHP
|
<div class="page-header">
|
||
|
<h2><?= t('You already have one subtask in progress') ?></h2>
|
||
|
</div>
|
||
|
|
||
|
<form action="<?= $this->u('subtask', 'changeRestrictionStatus', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'subtask_id' => $subtask['id'])) ?>" method="post">
|
||
|
|
||
|
<?= $this->formCsrf() ?>
|
||
|
<?= $this->formHidden('redirect', array('redirect' => $redirect)) ?>
|
||
|
|
||
|
<p><?= t('Select the new status of the subtask: "%s"', $subtask_inprogress['title']) ?></p>
|
||
|
<?= $this->formRadios('status', $status_list) ?>
|
||
|
<?= $this->formHidden('id', $subtask_inprogress) ?>
|
||
|
|
||
|
<div class="form-actions">
|
||
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-red"/>
|
||
|
<?= t('or') ?>
|
||
|
<a href="#" class="close-popover"><?= t('cancel') ?></a>
|
||
|
</div>
|
||
|
</form>
|