mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
11 lines
No EOL
378 B
PHP
11 lines
No EOL
378 B
PHP
<h2><?= $this->e($task['title']) ?> (#<?= $task['id'] ?>)</h2>
|
|
|
|
<ul>
|
|
<li>
|
|
<?= t('Column on the board:') ?>
|
|
<strong><?= $this->e($task['column_title']) ?></strong>
|
|
</li>
|
|
<li><?= t('Task position:').' '.$this->e($task['position']) ?></li>
|
|
</ul>
|
|
|
|
<?= $this->render('notification/footer', array('task' => $task, 'application_url' => $application_url)) ?>
|