blob: ae02f64e91cfc1a3eff49c0d2230fa641749f57a (
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, 'application_url' => $application_url)) ?>
|