summaryrefslogtreecommitdiff
path: root/app/Templates/board_public.php
blob: 0808079e921aded76f9d88e7c40986c5cebba937 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<section id="main" class="public-board">

    <?php if (empty($columns)): ?>
        <p class="alert alert-error"><?= t('There is no column in your project!') ?></p>
    <?php else: ?>
        <table id="board">
            <tr>
                <?php $column_with = round(100 / count($columns), 2); ?>
                <?php foreach ($columns as $column): ?>
                <th width="<?= $column_with ?>%">
                    <?= Helper\escape($column['title']) ?>
                    <?php if ($column['task_limit']): ?>
                        <span title="<?= t('Task limit') ?>" class="task-limit">(<?= Helper\escape(count($column['tasks']).'/'.$column['task_limit']) ?>)</span>
                    <?php endif ?>
                </th>
                <?php endforeach ?>
            </tr>
            <tr>
                <?php foreach ($columns as $column): ?>
                <td class="column <?= $column['task_limit'] && count($column['tasks']) > $column['task_limit'] ? 'task-limit-warning' : '' ?>">
                    <?php foreach ($column['tasks'] as $task): ?>
                    <div class="task task-<?= $task['color_id'] ?>">

                        #<?= $task['id'] ?> -

                        <span class="task-user">
                        <?php if (! empty($task['owner_id'])): ?>
                            <?= t('Assigned to %s', $task['username']) ?>
                        <?php else: ?>
                            <span class="task-nobody"><?= t('Nobody assigned') ?></span>
                        <?php endif ?>
                        </span>

                        <?php if ($task['score']): ?>
                            <span class="task-score"><?= Helper\escape($task['score']) ?></span>
                        <?php endif ?>

                        <div class="task-title">
                            <?= Helper\escape($task['title']) ?>
                        </div>

                        <?php if ($task['category_id']): ?>
                        <div class="task-category-container">
                            <span class="task-category">
                                <?= Helper\in_list($task['category_id'], $categories) ?>
                            </span>
                        </div>
                        <?php endif ?>

                        <?php if (! empty($task['date_due']) || ! empty($task['nb_comments']) || ! empty($task['description'])): ?>
                        <div class="task-footer">

                            <?php if (! empty($task['date_due'])): ?>
                            <div class="task-date">
                                <?= dt('%B %e, %G', $task['date_due']) ?>
                            </div>
                            <?php endif ?>

                            <div class="task-icons">
                                <?php if (! empty($task['nb_comments'])): ?>
                                    <?= $task['nb_comments'] ?> <i class="fa fa-comment-o" title="<?= p($task['nb_comments'], t('%d comment', $task['nb_comments']), t('%d comments', $task['nb_comments'])) ?>"></i>
                                <?php endif ?>

                                <?php if (! empty($task['description'])): ?>
                                    <i class="fa fa-file-text-o" title="<?= t('Description') ?>"></i>
                                <?php endif ?>
                            </div>
                        </div>
                        <?php endif ?>

                    </div>
                    <?php endforeach ?>
                </td>
                <?php endforeach ?>
            </tr>
        </table>
    <?php endif ?>

</section>