mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
17 lines
499 B
PHP
17 lines
499 B
PHP
<section id="main">
|
|
|
|
<?= $this->render('board/filters', array(
|
|
'categories' => $categories,
|
|
'users' => $users,
|
|
'project' => $project,
|
|
)) ?>
|
|
|
|
<?= $this->render('board/show', array(
|
|
'project' => $project,
|
|
'swimlanes' => $swimlanes,
|
|
'categories' => $categories,
|
|
'board_private_refresh_interval' => $board_private_refresh_interval,
|
|
'board_highlight_period' => $board_highlight_period,
|
|
)) ?>
|
|
|
|
</section>
|