diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-10-05 08:46:39 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-10-05 08:46:39 -0400 |
commit | 9159be81ec48dafa4ce0302418e5fcd2a95d734c (patch) | |
tree | 91e6fc577491d0ba73d8c24dd09c6e97a350064c /app/Template/board | |
parent | 1c0fad6e129aa390ae0926718c2c1d041959d2a3 (diff) | |
parent | b18e3d6a5c25cfbfc87ee4d62231ff8a2866da52 (diff) |
Merge pull-request #2707
Diffstat (limited to 'app/Template/board')
-rw-r--r-- | app/Template/board/tooltip_subtasks.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/board/tooltip_subtasks.php b/app/Template/board/tooltip_subtasks.php index 8d5bc059..335c28ce 100644 --- a/app/Template/board/tooltip_subtasks.php +++ b/app/Template/board/tooltip_subtasks.php @@ -1,7 +1,8 @@ <div class="tooltip-large"> <table class="table-small"> <tr> - <th class="column-80"><?= t('Subtask') ?></th> + <th class="column-70"><?= t('Subtask') ?></th> + <?= $this->hook->render('template:board:tooltip:subtasks:header:before-assignee') ?> <th><?= t('Assignee') ?></th> </tr> <?php foreach ($subtasks as $subtask): ?> @@ -9,6 +10,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']) ?> |