summaryrefslogtreecommitdiff
path: root/app/Template/board/index.php
blob: 7853708550b8182e8f603ba5970b0ef494662955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>