Files
BulkMoveTasks/Template/board/move_all_tasks.php

21 lines
763 B
PHP
Raw Normal View History

2026-06-28 17:30:19 -03:00
<div class="page-header">
<h2><?= t('Move all tasks to another column') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('BulkMoveController', 'move', array('plugin' => 'BulkMoveTasks', 'project_id' => $project['id'])) ?>">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('column_id', $values) ?>
<?= $this->form->hidden('swimlane_id', $values) ?>
<p class="alert">
<?= t('%d task(s) from the column "%s" (swimlane "%s") will be moved.', $nb_tasks, $column, $swimlane) ?>
</p>
<?= $this->form->label(t('Destination column'), 'dst_column_id') ?>
<?= $this->form->select('dst_column_id', $columns_list) ?>
<?= $this->modal->submitButtons(array(
'submitLabel' => t('Move'),
)) ?>
</form>