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

    <?= $this->render('project/filters', array(
        'project' => $project,
        'filters' => $filters,
        '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>