mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
13 lines
553 B
PHP
13 lines
553 B
PHP
<?= $this->form->csrf() ?>
|
|
<?= $this->form->hidden('task_id', array('task_id' => $task['id'])) ?>
|
|
<?= $this->form->hidden('id', $values) ?>
|
|
<?= $this->form->hidden('link_type', $values) ?>
|
|
|
|
<?= $this->form->label(t('URL'), 'url') ?>
|
|
<?= $this->form->text('url', $values, $errors, array('required')) ?>
|
|
|
|
<?= $this->form->label(t('Title'), 'title') ?>
|
|
<?= $this->form->text('title', $values, $errors, array('required')) ?>
|
|
|
|
<?= $this->form->label(t('Dependency'), 'dependency') ?>
|
|
<?= $this->form->select('dependency', $dependencies, $values, $errors) ?>
|