summaryrefslogtreecommitdiff
path: root/app/Template/project_list/show.php
blob: 9dfae24ccc6c88d7848c651b01a8fe12b11ca918 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<section id="main">
    <div class="page-header">
        <ul>
            <?= $this->hook->render('template:project-list:menu:before') ?>

            <?php if ($this->user->hasAccess('ProjectCreationController', 'create')): ?>
                <li>
                    <?= $this->modal->medium('plus', t('New project'), 'ProjectCreationController', 'create') ?>
                </li>
            <?php endif ?>
            <?php if ($this->app->config('disable_private_project', 0) == 0): ?>
                <li>
                    <?= $this->modal->medium('lock', t('New private project'), 'ProjectCreationController', 'createPrivate') ?>
                </li>
            <?php endif ?>

            <?php if ($this->user->hasAccess('ProjectUserOverviewController', 'managers')): ?>
                <li><?= $this->url->icon('user', t('Users overview'), 'ProjectUserOverviewController', 'managers') ?></li>
            <?php endif ?>

            <?php if ($this->user->hasAccess('ProjectGanttController', 'show')): ?>
                <li><?= $this->url->icon('sliders', t('Projects Gantt chart'), 'ProjectGanttController', 'show') ?></li>
            <?php endif ?>

            <?= $this->hook->render('template:project-list:menu:after') ?>
        </ul>
    </div>
    <?php if ($paginator->isEmpty()): ?>
        <p class="alert"><?= t('No project') ?></p>
    <?php else: ?>
        <table class="table-striped table-scrolling">
            <tr>
                <th class="column-5"><?= $paginator->order(t('Id'), 'id') ?></th>
                <th class="column-8"><?= $paginator->order(t('Status'), 'is_active') ?></th>
                <th class="column-15"><?= $paginator->order(t('Project'), 'name') ?></th>
                <th class="column-10"><?= $paginator->order(t('Start date'), 'start_date') ?></th>
                <th class="column-10"><?= $paginator->order(t('End date'), 'end_date') ?></th>
                <th class="column-15"><?= $paginator->order(t('Owner'), 'owner_id') ?></th>
                <?php if ($this->user->hasAccess('ProjectUserOverviewController', 'managers')): ?>
                    <th class="column-10"><?= t('Users') ?></th>
                <?php endif ?>
                <th><?= t('Columns') ?></th>
            </tr>
            <?php foreach ($paginator->getCollection() as $project): ?>
            <tr>
                <td>
                    <?= $this->render('project/dropdown', array('project' => $project)) ?>
                </td>
                <td>
                    <?php if ($project['is_active']): ?>
                        <?= t('Active') ?>
                    <?php else: ?>
                        <?= t('Inactive') ?>
                    <?php endif ?>
                </td>
                <td>
                    <?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>

                    <?php if ($project['is_public']): ?>
                        <i class="fa fa-share-alt fa-fw" title="<?= t('Shared project') ?>"></i>
                    <?php endif ?>
                    <?php if ($project['is_private']): ?>
                        <i class="fa fa-lock fa-fw" title="<?= t('Private project') ?>"></i>
                    <?php endif ?>

                    <?php if (! empty($project['description'])): ?>
                        <span class="tooltip" title="<?= $this->text->markdownAttribute($project['description']) ?>">
                            <i class="fa fa-info-circle"></i>
                        </span>
                    <?php endif ?>
                </td>
                <td>
                    <?= $this->dt->date($project['start_date']) ?>
                </td>
                <td>
                    <?= $this->dt->date($project['end_date']) ?>
                </td>
                <td>
                    <?php if ($project['owner_id'] > 0): ?>
                        <?= $this->text->e($project['owner_name'] ?: $project['owner_username']) ?>
                    <?php endif ?>
                </td>
                <?php if ($this->user->hasAccess('ProjectUserOverviewController', 'managers')): ?>
                    <td>
                        <i class="fa fa-users fa-fw"></i>
                        <span class="tooltip" title="<?= t('Members') ?>" data-href="<?= $this->url->href('ProjectUserOverviewController', 'users', array('project_id' => $project['id'])) ?>"><?= t('Members') ?></span>
                    </td>
                <?php endif ?>
                <td class="dashboard-project-stats">
                    <?php foreach ($project['columns'] as $column): ?>
                        <strong title="<?= t('Task count') ?>"><?= $column['nb_open_tasks'] ?></strong>
                        <small><?= $this->text->e($column['title']) ?></small>
                    <?php endforeach ?>
                </td>
            </tr>
            <?php endforeach ?>
        </table>

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