summaryrefslogtreecommitdiff
path: root/app/Template/board/tasklinks.php
blob: 9c4f52ca5058b87a9b4c42496b425239a151d71f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="tooltip-tasklinks">
    <ul>
    <?php foreach($links as $link): ?>
        <li>
            <strong><?= t($link['label']) ?></strong>
            <?= $this->a(
                $this->e('#'.$link['task_id'].' - '.$link['title']),
                'task', 'show', array('task_id' => $link['task_id'], 'project_id' => $link['project_id']),
                false,
                $link['is_active'] ? '' : 'task-link-closed'
            ) ?>
        </li>
    <?php endforeach ?>
    </ul>
</div>