diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 20:58:21 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-22 20:58:21 -0400 |
commit | 40917992e775bd21a280eb267241c452e04e5ade (patch) | |
tree | c1bf82ab83564bc9ca749f026f54342cbd35374f /app/Templates/task_upload.php | |
parent | 2230dd4e6b148346c0ec596b9e3e12996a762ed8 (diff) |
Add files upload
Diffstat (limited to 'app/Templates/task_upload.php')
-rw-r--r-- | app/Templates/task_upload.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app/Templates/task_upload.php b/app/Templates/task_upload.php new file mode 100644 index 00000000..7100ab31 --- /dev/null +++ b/app/Templates/task_upload.php @@ -0,0 +1,10 @@ +<div class="page-header"> + <h2><?= t('Attach a document') ?></h2> +</div> + +<form action="?controller=task&action=upload&task_id=<?= $task['id'] ?>" method="post" enctype="multipart/form-data"> + <input type="file" name="files[]" multiple /> + <div class="form-actions"> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + </div> +</form>
\ No newline at end of file |