blob: 3a7089cf6bd35c54cd0f45faa004d52f6675e7d5 (
plain)
1
2
3
4
5
6
7
8
9
|
<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>
<?= Helper\template('notification_footer', array('task' => $task)) ?>
|