summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Template/task_creation/form.php2
-rw-r--r--doc/plugin-hooks.markdown1
2 files changed, 3 insertions, 0 deletions
diff --git a/app/Template/task_creation/form.php b/app/Template/task_creation/form.php
index 5a976ac9..84f74c36 100644
--- a/app/Template/task_creation/form.php
+++ b/app/Template/task_creation/form.php
@@ -55,6 +55,8 @@
<?= $this->task->selectScore($values, $errors) ?>
<?= $this->task->selectTimeEstimated($values, $errors) ?>
<?= $this->task->selectDueDate($values, $errors) ?>
+
+ <?= $this->hook->render('template:task:form:right-column', array('values'=>$values, 'errors'=>$errors)) ?>
</div>
<div class="form-actions">
diff --git a/doc/plugin-hooks.markdown b/doc/plugin-hooks.markdown
index 2eb8aadd..3dcb5b1f 100644
--- a/doc/plugin-hooks.markdown
+++ b/doc/plugin-hooks.markdown
@@ -174,6 +174,7 @@ List of template hooks:
| `template:task:menu` | "Actions" menu on left in different task views |
| `template:task:dropdown` | Task dropdown menu in listing pages |
| `template:task:sidebar` | Sidebar on task page |
+| `template:task:form:right-column` | Right column in task form |
| `template:user:authentication:form` | "Edit authentication" form in user profile |
| `template:user:create-remote:form` | "Create remote user" form |
| `template:user:external` | "External authentication" page in user profile |