summaryrefslogtreecommitdiff
path: root/app/Template/swimlane/index.php
blob: e05b90889c03f4a435b9c1e336f97c31752cb9f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="page-header">
    <h2><?= t('Swimlanes') ?></h2>
    <ul>
        <li>
            <?= $this->modal->medium('plus', t('Add a new swimlane'), 'SwimlaneController', 'create', array('project_id' => $project['id'])) ?>
        </li>
    </ul>
</div>

<?php if (! empty($active_swimlanes) || $default_swimlane['show_default_swimlane'] == 1): ?>
<h3><?= t('Active swimlanes') ?></h3>
    <?= $this->render('swimlane/table', array(
        'swimlanes' => $active_swimlanes,
        'project' => $project,
        'default_swimlane' => $default_swimlane['show_default_swimlane'] == 1 ? $default_swimlane : array()
    )) ?>
<?php endif ?>

<?php if (! empty($inactive_swimlanes) || $default_swimlane['show_default_swimlane'] == 0): ?>
    <h3><?= t('Inactive swimlanes') ?></h3>
    <?= $this->render('swimlane/table', array(
        'swimlanes' => $inactive_swimlanes,
        'project' => $project,
        'default_swimlane' => $default_swimlane['show_default_swimlane'] == 0 ? $default_swimlane : array(),
        'disable_handler' => true
    )) ?>
<?php endif ?>