diff --git a/app/Template/task_creation/form.php b/app/Template/task_creation/form.php index cecba9ef9..9bfd839fb 100644 --- a/app/Template/task_creation/form.php +++ b/app/Template/task_creation/form.php @@ -28,6 +28,8 @@ form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> + + hook->render('template:task:form:left-column', array('values'=>$values, 'errors'=>$errors)) ?>
@@ -48,4 +50,4 @@ url->link(t('cancel'), 'board', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?>
- \ No newline at end of file + diff --git a/doc/plugin-hooks.markdown b/doc/plugin-hooks.markdown index c7d0ad498..595f8d520 100644 --- a/doc/plugin-hooks.markdown +++ b/doc/plugin-hooks.markdown @@ -179,6 +179,7 @@ List of template hooks: | `template:project-user:sidebar` | Sidebar on project user overview page | | `template:task:dropdown` | Task dropdown menu in listing pages | | `template:task:sidebar` | Sidebar on task page | +| `template:task:form:left-column` | Left column in task form | | `template:task:form:right-column` | Right column in task form | | `template:task:show:top ` | Show task page: top | | `template:task:show:bottom` | Show task page: bottom |