summaryrefslogtreecommitdiff
path: root/app/Template
diff options
context:
space:
mode:
authorEskiso <eSkiSo@users.noreply.github.com>2016-09-28 17:29:33 +0100
committerGitHub <noreply@github.com>2016-09-28 17:29:33 +0100
commita5aa42369491ca5d6d181ae072d5a313845a274e (patch)
tree87f2e13480eaea126815fbda80f28326faebd3e5 /app/Template
parent7a9ee838f02483c995216450b9b3dcfcee02e32d (diff)
Added hook for plugins
Diffstat (limited to 'app/Template')
-rw-r--r--app/Template/board/tooltip_subtasks.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Template/board/tooltip_subtasks.php b/app/Template/board/tooltip_subtasks.php
index 8d5bc059..afff5e2b 100644
--- a/app/Template/board/tooltip_subtasks.php
+++ b/app/Template/board/tooltip_subtasks.php
@@ -1,7 +1,7 @@
<div class="tooltip-large">
<table class="table-small">
<tr>
- <th class="column-80"><?= t('Subtask') ?></th>
+ <th class="column-70"><?= t('Subtask') ?></th>
<th><?= t('Assignee') ?></th>
</tr>
<?php foreach ($subtasks as $subtask): ?>
@@ -9,6 +9,7 @@
<td>
<?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
</td>
+ <?= $this->hook->render('template:board:tooltip:subtasks:rows', array('subtask' => $subtask)) ?>
<td>
<?php if (! empty($subtask['username'])): ?>
<?= $this->text->e($subtask['name'] ?: $subtask['username']) ?>