diff options
Diffstat (limited to 'app/Template/task_move_position/show.php')
-rw-r--r-- | app/Template/task_move_position/show.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/Template/task_move_position/show.php b/app/Template/task_move_position/show.php new file mode 100644 index 00000000..a73be785 --- /dev/null +++ b/app/Template/task_move_position/show.php @@ -0,0 +1,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> |