Kanboard-Prod/app/Templates/notification_task_due.php

9 lines
409 B
PHP

<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)) ?>