blob: 29e1bcb18279a08bde46728fb8dc8071520e044c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<div class="page-header">
<h2><?= t('Move task to another position on the board') ?></h2>
</div>
<script type="x/templates" id="template-task-move-position">
<?= $this->form->label(t('Swimlane'), 'swimlane') ?>
<select v-model="swimlaneId" @change="onChangeSwimlane()" id="form-swimlane">
<option v-for="swimlane in board" v-bind:value="swimlane.id">
{{ swimlane.name }}
</option>
</select>
<div v-if="columns.length > 0">
<?= $this->form->label(t('Column'), 'column') ?>
<select v-model="columnId" @change="onChangeColumn()" id="form-column">
<option v-for="column in columns" v-bind:value="column.id">
{{ column.title }}
</option>
</select>
</div>
<div v-if="tasks.length > 0">
<?= $this->form->label(t('Position'), 'position') ?>
<select v-model="position" id="form-position">
<option v-for="task in tasks" v-bind:value="task.position">
#{{ task.id }} - {{ task.title }}
</option>
</select>
<label><input type="radio" value="before" v-model="positionChoice"><?= t('Insert before this task') ?></label>
<label><input type="radio" value="after" v-model="positionChoice"><?= t('Insert after this task') ?></label>
</div>
<div class="form-actions">
<input type="button" value="<?= t('Save') ?>" class="btn btn-blue" @click="onSubmit">
<?= t('or') ?>
<?= $this->url->link(t('cancel'), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?>
</div>
</script>
<task-move-position
save-url="<?= $this->url->href('TaskMovePositionController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"
:board='<?= json_encode($board, JSON_HEX_APOS) ?>'
></task-move-position>
|