task_assignee_change.php 663 B

123456789101112131415161718192021222324
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <ul>
  5. <li>
  6. <strong>
  7. <?php if ($task['assignee_username']): ?>
  8. <?= t('Assigned to %s', $task['assignee_name'] ?: $task['assignee_username']) ?>
  9. <?php else: ?>
  10. <?= t('There is nobody assigned') ?>
  11. <?php endif ?>
  12. </strong>
  13. </li>
  14. </ul>
  15. <?php if (! empty($task['description'])): ?>
  16. <h2><?= t('Description') ?></h2>
  17. <?= $this->text->markdown($task['description'], true) ?: t('There is no description.') ?>
  18. <?php endif ?>
  19. <?= $this->render('notification/footer', array('task' => $task)) ?>
  20. </body>
  21. </html>