subtask_delete.php 463 B

123456789101112131415
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <h3><?= t('Subtask removed') ?></h3>
  5. <ul>
  6. <li><?= t('Title:') ?> <?= $this->text->e($subtask['title']) ?></li>
  7. <li><?= t('Status:') ?> <?= t($subtask['status_name']) ?></li>
  8. <li><?= t('Assignee:') ?> <?= $this->text->e($subtask['name'] ?: $subtask['username'] ?: '?') ?></li>
  9. </ul>
  10. <?= $this->render('notification/footer', array('task' => $task)) ?>
  11. </body>
  12. </html>