20 lines
605 B
PHP
20 lines
605 B
PHP
<section id="main">
|
|
|
|
<?= $this->render('project/filters', array(
|
|
'project' => $project,
|
|
'filters' => $filters,
|
|
'categories_list' => $categories_list,
|
|
'users_list' => $users_list,
|
|
'custom_filters_list' => $custom_filters_list,
|
|
'is_board' => true,
|
|
)) ?>
|
|
|
|
<?= $this->render('board/table_container', array(
|
|
'project' => $project,
|
|
'swimlanes' => $swimlanes,
|
|
'board_private_refresh_interval' => $board_private_refresh_interval,
|
|
'board_highlight_period' => $board_highlight_period,
|
|
)) ?>
|
|
|
|
</section>
|