summaryrefslogtreecommitdiff
path: root/app/Template/board/index.php
blob: 6f6fddbe780d8d7efd80d127f313941212bf9f1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<section id="main">

    <?= $this->render('board/filters', array(
        'categories' => $categories_listing,
        'users' => $users,
        'project' => $project,
    )) ?>

    <?= $this->render('board/show', array(
            'project' => $project,
            'swimlanes' => $swimlanes,
            'board_private_refresh_interval' => $board_private_refresh_interval,
            'board_highlight_period' => $board_highlight_period,
    )) ?>

</section>