summaryrefslogtreecommitdiff
path: root/plugins/Bigboard/Template/board/view.php
blob: 7987e7c226aacf270c33aa85d1268e88aa746068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<section id="main">

    <span class='header'><h1><?= $this->text->e($project['name']) ?>
    
    <?php if (! empty($project['description'])): ?>
        <?= $this->app->tooltipMarkdown($project['description']) ?>
    <?php endif ?>
    
    </span>
    </h1></span>
    

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

</section>