blob: 53c662a06caafddedb4cafeb9e4e54bf78b4d565 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<section id="main">
<?= Helper\template('board/filters', array(
'categories' => $categories,
'users' => $users,
'project' => $project,
)) ?>
<?= Helper\template('board/show', array(
'project' => $project,
'swimlanes' => $swimlanes,
'categories' => $categories,
'board_private_refresh_interval' => $board_private_refresh_interval,
'board_highlight_period' => $board_highlight_period,
)) ?>
</section>
|