diff options
Diffstat (limited to 'app/Templates/task_move_project.php')
-rw-r--r-- | app/Templates/task_move_project.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Templates/task_move_project.php b/app/Templates/task_move_project.php deleted file mode 100644 index 3bc3bcb8..00000000 --- a/app/Templates/task_move_project.php +++ /dev/null @@ -1,24 +0,0 @@ -<div class="page-header"> - <h2><?= t('Move the task to another project') ?></h2> -</div> - -<?php if (empty($projects_list)): ?> - <p class="alert"><?= t('No project') ?></p> -<?php else: ?> - - <form method="post" action="?controller=task&action=move&task_id=<?= $task['id'] ?>&project_id=<?= $task['project_id'] ?>" autocomplete="off"> - - <?= Helper\form_csrf() ?> - - <?= Helper\form_hidden('id', $values) ?> - <?= Helper\form_label(t('Project'), 'project_id') ?> - <?= Helper\form_select('project_id', $projects_list, $values, $errors) ?><br/> - - <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> - <?= t('or') ?> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> - </div> - </form> - -<?php endif ?>
\ No newline at end of file |