blob: 96f4e54408cd49ec986467628cd8c90d1690ee0a (
plain)
1
2
3
4
5
6
7
8
9
|
<html>
<body>
<h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
<p><?= t('Task #%d "%s" has been moved to the project "%s"', $task['id'], $task['title'], $task['project_name']) ?></p>
<?= $this->render('notification/footer', array('task' => $task)) ?>
</body>
</html>
|