summaryrefslogtreecommitdiff
path: root/app/Template/task_modification
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-04-24 17:03:09 -0400
committerFrederic Guillot <fred@kanboard.net>2016-04-24 17:03:09 -0400
commitf74d7ef209701bba905c0179b30f24a6e3faa5db (patch)
tree1034252a7525c24e8dc828c9e010b56faca272e8 /app/Template/task_modification
parent51ec4b4cf86c7f4a7552f8e01cee704cc6b4b57b (diff)
Added more template hooks
Diffstat (limited to 'app/Template/task_modification')
-rw-r--r--app/Template/task_modification/edit_task.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/task_modification/edit_task.php b/app/Template/task_modification/edit_task.php
index b5891c15..5ddec5ea 100644
--- a/app/Template/task_modification/edit_task.php
+++ b/app/Template/task_modification/edit_task.php
@@ -14,6 +14,8 @@
<?= $this->task->selectCategory($categories_list, $values, $errors) ?>
<?= $this->task->selectPriority($project, $values) ?>
<?= $this->task->selectScore($values, $errors) ?>
+
+ <?= $this->hook->render('template:task:form:left-column', array('values' => $values, 'errors' => $errors)) ?>
</div>
<div class="form-column">
@@ -21,6 +23,8 @@
<?= $this->task->selectTimeSpent($values, $errors) ?>
<?= $this->task->selectStartDate($values, $errors) ?>
<?= $this->task->selectDueDate($values, $errors) ?>
+
+ <?= $this->hook->render('template:task:form:right-column', array('values' => $values, 'errors' => $errors)) ?>
</div>
<div class="form-clear">
@@ -32,4 +36,4 @@
<?= t('or') ?>
<?= $this->url->link(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'close-popover') ?>
</div>
-</form> \ No newline at end of file
+</form>