blob: 25ecc9f1b68b904ae3331a9e14fb66c1947a1a3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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']) ?>
<?php if ($task['assignee_username']): ?>
(<strong><?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?></strong>)
<?php endif ?>
</li>
<?php endforeach ?>
</ul>
<?= Helper\template('notification_footer', array('task' => $task)) ?>
|