看板初始化提交

This commit is contained in:
zephyr
2026-06-01 21:23:12 -07:00
commit 54a842f4ab
2104 changed files with 241695 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
<div class="page-header">
<h2><?= t('Upload the database') ?></h2>
</div>
<div class="alert">
<p>
<?= t('You could upload the previously downloaded Sqlite database (Gzip format).') ?>
</p>
</div>
<form action="<?= $this->url->href('ConfigController', 'saveUploadedDb', [], true) ?>" method="post" enctype="multipart/form-data">
<?= $this->form->label(t('Database file'), 'file') ?>
<?= $this->form->file('file') ?>
<?= $this->modal->submitButtons(array('submitLabel' => t('Upload'))) ?>
</form>