diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-11-07 21:26:55 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-11-07 21:26:55 -0500 |
commit | 83f529008a77758afcdc25959637011c3b835324 (patch) | |
tree | 8c6d26030ed0e6e72e98751c7aa227ab92715ed7 /app/Template/external_task_modification/show.php | |
parent | e5c63f4ecc78e144659bf83947a19d996f60b490 (diff) |
Handle modification of external tasks
Diffstat (limited to 'app/Template/external_task_modification/show.php')
-rw-r--r-- | app/Template/external_task_modification/show.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app/Template/external_task_modification/show.php b/app/Template/external_task_modification/show.php new file mode 100644 index 00000000..79dd9556 --- /dev/null +++ b/app/Template/external_task_modification/show.php @@ -0,0 +1,26 @@ +<form class="popover-form" method="post" action="<?= $this->url->href('TaskModificationController', 'update', array('task_id' => $task['id'], 'project_id' => $project['id'])) ?>"> + <?= $this->form->csrf() ?> + <?= $this->form->hidden('id', $values) ?> + <?= $this->form->hidden('project_id', $values) ?> + + <?php if (! empty($error_message)): ?> + <p class="alert alert-error"><?= $this->text->e($error_message) ?></p> + <?php else: ?> + <?= $this->render($template, array( + 'project' => $project, + 'task' => $task, + 'external_task' => $external_task, + 'tags' => $tags, + 'users_list' => $users_list, + 'categories_list' => $categories_list, + 'values' => $values, + 'errors' => $errors, + )) ?> + <?php endif ?> + + <div class="form-actions"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> + <?= t('or') ?> + <?= $this->url->link(t('cancel'), 'TaskViewController', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?> + </div> +</form> |