diff options
author | Imbasaur <yarrusg@gmail.com> | 2016-03-25 17:20:02 +0100 |
---|---|---|
committer | Imbasaur <yarrusg@gmail.com> | 2016-03-25 17:20:02 +0100 |
commit | eacd110b2b34d7af80e338ee617377ab596877bc (patch) | |
tree | 731718ec5550ad70f055b9f223966c6a8b02a379 /app/Template/task_creation/form.php | |
parent | 13d5bd8e48bd6c0109d1272da58a8879bf9a6737 (diff) |
Update form.php
Task Creation Left Column Hook
Diffstat (limited to 'app/Template/task_creation/form.php')
-rw-r--r-- | app/Template/task_creation/form.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/task_creation/form.php b/app/Template/task_creation/form.php index cecba9ef..9bfd839f 100644 --- a/app/Template/task_creation/form.php +++ b/app/Template/task_creation/form.php @@ -28,6 +28,8 @@ <?php if (! isset($duplicate)): ?> <?= $this->form->checkbox('another_task', t('Create another task'), 1, isset($values['another_task']) && $values['another_task'] == 1) ?> <?php endif ?> + + <?= $this->hook->render('template:task:form:left-column', array('values'=>$values, 'errors'=>$errors)) ?> </div> <div class="form-column"> @@ -48,4 +50,4 @@ <button type="submit" class="btn btn-blue" tabindex="15"><?= t('Save') ?></button> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'board', 'show', array('project_id' => $values['project_id']), false, 'close-popover') ?> </div> -</form>
\ No newline at end of file +</form> |