mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
22 lines
683 B
PHP
22 lines
683 B
PHP
|
<section id="main">
|
||
|
|
||
|
<?= Helper\template('board/filters', array(
|
||
|
'categories' => $categories,
|
||
|
'users' => $users,
|
||
|
'project' => $project,
|
||
|
)) ?>
|
||
|
|
||
|
<?php if (empty($board)): ?>
|
||
|
<p class="alert alert-error"><?= t('There is no column in your project!') ?></p>
|
||
|
<?php else: ?>
|
||
|
<?= Helper\template('board/show', array(
|
||
|
'project' => $project,
|
||
|
'board' => $board,
|
||
|
'categories' => $categories,
|
||
|
'board_private_refresh_interval' => $board_private_refresh_interval,
|
||
|
'board_highlight_period' => $board_highlight_period,
|
||
|
)) ?>
|
||
|
<?php endif ?>
|
||
|
|
||
|
</section>
|