看板初始化提交

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
+23
View File
@@ -0,0 +1,23 @@
<div class="page-header">
<h2><?= t('Add a new external link') ?></h2>
</div>
<form action="<?= $this->url->href('TaskExternalLinkController', 'create', array('task_id' => $task['id'])) ?>" method="post" autocomplete="off">
<?= $this->form->csrf() ?>
<?= $this->form->label(t('External link'), 'text') ?>
<?= $this->form->text(
'text',
$values,
$errors,
array(
'required',
'autofocus',
'placeholder="'.t('Copy and paste your link here...').'"',
)) ?>
<?= $this->form->label(t('Link type'), 'type') ?>
<?= $this->form->select('type', $types, $values) ?>
<?= $this->modal->submitButtons() ?>
</form>