summaryrefslogtreecommitdiff
path: root/app/Templates/notification_task_due.php
blob: 1686c7def23c9616fe9754910a0a5b1e2c243c3f (plain)
1
2
3
4
5
6
7
8
9
10
<h2><?= t('List of due tasks for the project "%s"', $project) ?></h2>

<ul>
    <?php foreach ($tasks as $task): ?>
        <li>(<strong>#<?= $task['id'] ?></strong>) <?= Helper\escape($task['title']) ?> (<strong><?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?></strong>)</li>
    <?php endforeach ?>
</ul>

<hr/>
<p>Kanboard</p>