blob: f87e007719b18c97448b8e7e13b9a5174dbd2374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<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>
|