看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 27411ebedc
1827 changed files with 192340 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<div class="page-header">
<h2><?= t('Import tasks from another project') ?></h2>
</div>
<?php if (count($projects) > 0): ?>
<form method="post" action="<?= $this->url->href('ProjectViewController', 'doTasksImport', ['project_id' => $project['id']]) ?>">
<?= $this->form->csrf() ?>
<?= $this->form->label(t('Select the project to copy tasks from'), 'src_project_id') ?>
<?= $this->form->select('src_project_id', $projects, $values, $errors) ?>
<?= $this->modal->submitButtons(['submitLabel' => t('Save')]) ?>
</form>
<?php else: ?>
<p class="alert alert-info"><?= t('No other projects found.') ?></p>
<?php endif ?>