summaryrefslogtreecommitdiff
path: root/app/Template/board/tooltip_subtasks.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Template/board/tooltip_subtasks.php')
-rw-r--r--app/Template/board/tooltip_subtasks.php34
1 files changed, 21 insertions, 13 deletions
diff --git a/app/Template/board/tooltip_subtasks.php b/app/Template/board/tooltip_subtasks.php
index 126a319f..0322d373 100644
--- a/app/Template/board/tooltip_subtasks.php
+++ b/app/Template/board/tooltip_subtasks.php
@@ -1,14 +1,22 @@
-<table class="table-stripped">
-<?php foreach ($subtasks as $subtask): ?>
- <tr>
- <td class="column-80">
- <?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
- </td>
- <td>
- <?php if (! empty($subtask['username'])): ?>
+<div class="tooltip-large">
+ <table>
+ <tr>
+ <th class="column-80"><?= t('Subtask') ?></th>
+ <th><?= t('Assignee') ?></th>
+ </tr>
+ <?php foreach ($subtasks as $subtask): ?>
+ <tr>
+ <td>
+ <?= $this->subtask->toggleStatus($subtask, $task['project_id']) ?>
+ </td>
+ <td>
+ <?php if (! empty($subtask['username'])): ?>
<?= $this->text->e($subtask['name'] ?: $subtask['username']) ?>
- <?php endif ?>
- </td>
- </tr>
-<?php endforeach ?>
-</table>
+ <?php else: ?>
+ <?= t('Not assigned') ?>
+ <?php endif ?>
+ </td>
+ </tr>
+ <?php endforeach ?>
+ </table>
+</div>