19 lines
588 B
PHP
19 lines
588 B
PHP
<section id="main">
|
|
|
|
<?= $this->render('board/filters', array(
|
|
'categories' => $categories_listing,
|
|
'users' => $users,
|
|
'project' => $project,
|
|
)) ?>
|
|
|
|
<?= $this->render('board/show', array(
|
|
'project' => $project,
|
|
'swimlanes' => $swimlanes,
|
|
'categories_listing' => $categories_listing,
|
|
'categories_description' => $categories_description,
|
|
'board_private_refresh_interval' => $board_private_refresh_interval,
|
|
'board_highlight_period' => $board_highlight_period,
|
|
)) ?>
|
|
|
|
</section>
|