diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-13 17:50:20 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-13 17:50:20 -0500 |
commit | 364382b1b58db8bf1bd2c8866e21c869a7a5d6d0 (patch) | |
tree | e1bdaf8c76bbb6036b3bb7a3a19e8cc1e2e99604 /app/Template/tasklink/edit.php | |
parent | 124f7cad284d7ce867666def5731ad34a9265e63 (diff) |
Add task links (Merge pull-request #610)
Diffstat (limited to 'app/Template/tasklink/edit.php')
-rw-r--r-- | app/Template/tasklink/edit.php | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app/Template/tasklink/edit.php b/app/Template/tasklink/edit.php new file mode 100644 index 00000000..e1fcded2 --- /dev/null +++ b/app/Template/tasklink/edit.php @@ -0,0 +1,53 @@ +<div class="page-header"> + <?php if (! isset($edit)): ?> + <h2><?= t('Add a link') ?></h2> + <?php else: ?> + <h2><?= t('Edit a link') ?></h2> + <?php endif ?> +</div> + +<?php if (!empty($link_list)): ?> +<form method="post" action="<?= $this->u('tasklink', isset($edit) ? 'update' : 'save', array('task_id' => $task['id'], 'link_id' => @$values['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off"> + + <?= $this->formCsrf() ?> + + <?php if (isset($edit)): ?> + <?= $this->formHidden('id', $values) ?> + <?= $this->formHidden('task_link_inverse_id', $values) ?> + <?php endif ?> + <?= $this->formHidden('task_id', $values) ?> + + #<?= $task['id'] ?> +   + <?= $this->formSelect('link_label_id', $link_list, $values, $errors, 'required autofocus') ?> +   + #<?= $this->formNumeric('task_inverse_id', $values, $errors, array('required', 'placeholder="'.t('Task id').'"', 'title="'.t('Linked task id').'"', 'list="task_inverse_ids"')) ?> + <?php if (!empty($task_list)): ?> + <datalist id="task_inverse_ids"> + <select> + <?php foreach ($task_list as $task_inverse_id => $task_inverse_title): ?> + <option value="<?= $task_inverse_id ?>">#<?= $task_inverse_id.' '.$task_inverse_title ?></option> + <?php endforeach ?> + </select> + </datalist> + <?php endif ?> + <br/> + + <?php if (! isset($edit)): ?> + <?= $this->formCheckbox('another_link', t('Create another link'), 1, isset($values['another_link']) && $values['another_link'] == 1) ?> + <?php endif ?> + + <div class="form-actions"> + <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <?= t('or') ?> + <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + </div> +</form> +<?php else: ?> +<div class="alert alert-info"> + <?= t('You need to add link labels to this project before to link this task to another one.') ?> + <ul> + <li><?= $this->a(t('Add link labels'), 'link', 'index', array('project_id' => $task['project_id'])) ?></li> + </ul> +</div> +<?php endif ?> |