mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
21 lines
No EOL
758 B
PHP
21 lines
No EOL
758 B
PHP
<div class="page-header">
|
|
<h2><?= t('Link modification') ?></h2>
|
|
</div>
|
|
|
|
<form action="<?= $this->url->href('link', 'update', array('link_id' => $link['id'])) ?>" method="post" autocomplete="off">
|
|
|
|
<?= $this->form->csrf() ?>
|
|
<?= $this->form->hidden('id', $values) ?>
|
|
|
|
<?= $this->form->label(t('Label'), 'label') ?>
|
|
<?= $this->form->text('label', $values, $errors, array('required')) ?>
|
|
|
|
<?= $this->form->label(t('Opposite label'), 'opposite_id') ?>
|
|
<?= $this->form->select('opposite_id', $labels, $values, $errors) ?>
|
|
|
|
<div class="form-actions">
|
|
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
|
|
<?= t('or') ?>
|
|
<?= $this->url->link(t('cancel'), 'link', 'index') ?>
|
|
</div>
|
|
</form>
|