1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Templates/task_layout.php

16 lines
573 B
PHP
Raw Normal View History

2014-07-20 12:26:15 +02:00
<section id="main">
<div class="page-header">
<h2><?= Helper\escape($task['project_name']) ?> &gt; <?= t('Task #%d', $task['id']) ?></h2>
<ul>
<li><a href="?controller=board&amp;action=show&amp;project_id=<?= $task['project_id'] ?>"><?= t('Back to the board') ?></a></li>
</ul>
</div>
2014-10-22 19:59:09 +02:00
<section class="task-show" id="task-section">
2014-07-20 12:26:15 +02:00
<?= Helper\template('task_sidebar', array('task' => $task)) ?>
<div class="task-show-main">
<?= $task_content_for_layout ?>
</div>
</section>
</section>