summaryrefslogtreecommitdiff
path: root/app/Template/task_list/listing.php
blob: b3c66aa6c43352a0e41ef2251c18b1613b39dc62 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
<section id="main">
    <?= $this->projectHeader->render($project, 'TaskListController', 'show') ?>

    <?php if ($paginator->isEmpty()): ?>
        <p class="alert"><?= t('No tasks found.') ?></p>
    <?php elseif (! $paginator->isEmpty()): ?>
        <div class="table-list">
            <?= $this->render('task_list/header', array(
                'paginator' => $paginator,
                'project'   => $project,
            )) ?>

            <?php foreach ($paginator->getCollection() as $task): ?>
                <div class="table-list-row color-<?= $task['color_id'] ?>">
                    <?= $this->render('task_list/task_title', array(
                        'task' => $task,
                    )) ?>

                    <?= $this->render('task_list/task_details', array(
                        'task' => $task,
                    )) ?>

                    <?= $this->render('task_list/task_avatars', array(
                        'task' => $task,
                    )) ?>

                    <?= $this->render('task_list/task_icons', array(
                        'task' => $task,
                    )) ?>

                    <?= $this->render('task_list/task_subtasks', array(
                        'task' => $task,
                    )) ?>
                </div>
            <?php endforeach ?>
        </div>

        <?= $paginator ?>
    <?php endif ?>
</section>