3
1

task_internal_link_delete.php 451 B

12345678910111213
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <p>
  5. <?= e('The link with the relation "%s" to the task %s has been removed',
  6. e($task_link['label']),
  7. $this->url->absoluteLink(t('#%d', $task_link['opposite_task_id']), 'TaskViewController', 'show', array('task_id' => $task_link['opposite_task_id']))) ?>
  8. </p>
  9. <?= $this->render('notification/footer', array('task' => $task)) ?>
  10. </body>
  11. </html>