3
1

comment_create.php 429 B

123456789101112131415
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <?php if (! empty($comment['username'])): ?>
  5. <h3><?= t('New comment posted by %s', $comment['name'] ?: $comment['username']) ?></h3>
  6. <?php else: ?>
  7. <h3><?= t('New comment') ?></h3>
  8. <?php endif ?>
  9. <?= $this->text->markdown($comment['comment'], true) ?>
  10. <?= $this->render('notification/footer', array('task' => $task)) ?>
  11. </body>
  12. </html>