blob: a73be785eca842a2e0944e993082955da1ce65a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<div class="page-header">
<h2><?= t('Move task to another position on the board') ?></h2>
</div>
<form>
<?= $this->app->component('task-move-position', array(
'saveUrl' => $this->url->href('TaskMovePositionController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])),
'board' => $board,
'swimlaneLabel' => t('Swimlane'),
'columnLabel' => t('Column'),
'positionLabel' => t('Position'),
'beforeLabel' => t('Insert before this task'),
'afterLabel' => t('Insert after this task'),
)) ?>
<?= $this->modal->submitButtons() ?>
</form>
|