diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-11-14 15:39:43 -0800 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-11-14 15:39:43 -0800 |
commit | 95cdeed472d00cd1b2f53b4878afd7fbc39ea389 (patch) | |
tree | af3aebe998dd6551946eea5901e1f2249adef3a9 /app/Template/task_import/show.php | |
parent | f6d7791ddc5c58cab0eedc6b290fd08b61191329 (diff) |
Task CSV import is now able to handle more fields
Add support for the priority, start date, tags and one external link.
Diffstat (limited to 'app/Template/task_import/show.php')
-rw-r--r-- | app/Template/task_import/show.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Template/task_import/show.php b/app/Template/task_import/show.php index 20b020d3..342cfb76 100644 --- a/app/Template/task_import/show.php +++ b/app/Template/task_import/show.php @@ -26,6 +26,8 @@ <li><?= t('The first row must be the header') ?></li> <li><?= t('Duplicates are not verified for you') ?></li> <li><?= t('The due date must use the ISO format: YYYY-MM-DD') ?></li> + <li><?= t('Tags must be separated by a comma') ?></li> + <li><?= t('Only the task title is required') ?></li> </ul> <p class="margin-top"> <?= $this->url->icon('download', t('Download CSV template'), 'TaskImportController', 'template', array('project_id' => $project['id'])) ?> |