mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
34 lines
No EOL
1.4 KiB
PHP
34 lines
No EOL
1.4 KiB
PHP
<div class="page-header">
|
|
<h2><?= t('Tasks Importation') ?></h2>
|
|
</div>
|
|
<form action="<?= $this->url->href('taskImport', 'step2', array('project_id' => $project['id'])) ?>" method="post" enctype="multipart/form-data">
|
|
<?= $this->form->csrf() ?>
|
|
|
|
<?= $this->form->label(t('Delimiter'), 'delimiter') ?>
|
|
<?= $this->form->select('delimiter', $delimiters, $values) ?>
|
|
|
|
<?= $this->form->label(t('Enclosure'), 'enclosure') ?>
|
|
<?= $this->form->select('enclosure', $enclosures, $values) ?>
|
|
|
|
<?= $this->form->label(t('CSV File'), 'file') ?>
|
|
<?= $this->form->file('file', $errors) ?>
|
|
|
|
<p class="form-help"><?= t('Maximum size: ') ?><?= is_integer($max_size) ? $this->text->bytes($max_size) : $max_size ?></p>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" value="<?= t('Import') ?>" class="btn btn-blue">
|
|
</div>
|
|
</form>
|
|
<div class="page-header">
|
|
<h2><?= t('Instructions') ?></h2>
|
|
</div>
|
|
<div class="alert">
|
|
<ul>
|
|
<li><?= t('Your file must use the predefined CSV format') ?></li>
|
|
<li><?= t('Your file must be encoded in UTF-8') ?></li>
|
|
<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>
|
|
</ul>
|
|
</div>
|
|
<p><i class="fa fa-download fa-fw"></i><?= $this->url->link(t('Download CSV template'), 'taskImport', 'template', array('project_id' => $project['id'])) ?></p>
|