task_move_position.php 387 B

123456789101112131415
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <ul>
  5. <li>
  6. <?= t('Column on the board:') ?>
  7. <strong><?= $this->text->e($task['column_title']) ?></strong>
  8. </li>
  9. <li><?= t('Task position:').' '.$this->text->e($task['position']) ?></li>
  10. </ul>
  11. <?= $this->render('notification/footer', array('task' => $task)) ?>
  12. </body>
  13. </html>