summaryrefslogtreecommitdiff
path: root/app/Template/project_overview/information.php
blob: 95508d98c610b77b63889556769e3aa1cd1419dc (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
<div class="page-header">
    <h2><?= t('Information') ?></h2>
</div>
<div class="listing">
<ul>
    <?php if ($project['owner_id'] > 0): ?>
        <li><?= t('Project owner: ') ?><strong><?= $this->text->e($project['owner_name'] ?: $project['owner_username']) ?></strong></li>
    <?php endif ?>

    <?php if (! empty($users)): ?>
        <?php foreach ($roles as $role => $role_name): ?>
            <?php if (isset($users[$role])): ?>
            <li>
                <?= $role_name ?>:
                <strong><?= implode(', ', $users[$role]) ?></strong>
            </li>
            <?php endif ?>
        <?php endforeach ?>
    <?php endif ?>

    <?php if ($project['start_date']): ?>
        <li><?= t('Start date: ').$this->dt->date($project['start_date']) ?></li>
    <?php endif ?>

    <?php if ($project['end_date']): ?>
        <li><?= t('End date: ').$this->dt->date($project['end_date']) ?></li>
    <?php endif ?>

    <?php if ($project['is_public']): ?>
        <li><i class="fa fa-share-alt"></i> <?= $this->url->link(t('Public link'), 'board', 'readonly', array('token' => $project['token']), false, '', '', true) ?></li>
        <li><i class="fa fa-rss-square"></i> <?= $this->url->link(t('RSS feed'), 'feed', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
        <li><i class="fa fa-calendar"></i> <?= $this->url->link(t('iCal feed'), 'ical', 'project', array('token' => $project['token'])) ?></li>
    <?php endif ?>
</ul>
</div>