summaryrefslogtreecommitdiff
path: root/app/Template/notification/subtask_delete.php
blob: 24562eba6658e8d3ba5d8f04be5e7f99e41a6942 (plain)
1
2
3
4
5
6
7
8
9
10
11
<h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>

<h3><?= t('Subtask removed') ?></h3>

<ul>
    <li><?= t('Title:') ?> <?= $this->text->e($subtask['title']) ?></li>
    <li><?= t('Status:') ?> <?= $this->text->e($subtask['status_name']) ?></li>
    <li><?= t('Assignee:') ?> <?= $this->text->e($subtask['name'] ?: $subtask['username'] ?: '?') ?></li>
</ul>

<?= $this->render('notification/footer', array('task' => $task)) ?>