task_move_swimlane.php 715 B

1234567891011121314151617181920212223
  1. <html>
  2. <body>
  3. <h2><?= $this->text->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
  4. <ul>
  5. <li>
  6. <?php if ($task['swimlane_id'] == 0): ?>
  7. <?= t('The task has been moved to the first swimlane') ?>
  8. <?php else: ?>
  9. <?= t('The task has been moved to another swimlane:') ?>
  10. <strong><?= $this->text->e($task['swimlane_name']) ?></strong>
  11. <?php endif ?>
  12. </li>
  13. <li>
  14. <?= t('Column on the board:') ?>
  15. <strong><?= $this->text->e($task['column_title']) ?></strong>
  16. </li>
  17. <li><?= t('Task position:').' '.$this->text->e($task['position']) ?></li>
  18. </ul>
  19. <?= $this->render('notification/footer', array('task' => $task)) ?>
  20. </body>
  21. </html>