summaryrefslogtreecommitdiff
path: root/app/Template/event/events.php
blob: 6bef8df40920eb039b4fa5fbbd381177dcb3fa36 (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
<?php if (empty($events)): ?>
    <p class="alert"><?= t('There is no activity yet.') ?></p>
<?php else: ?>

    <?php foreach ($events as $event): ?>
        <div class="activity-event">
            <p class="activity-datetime">
                <?php if ($this->text->contains($event['event_name'], 'subtask')): ?>
                    <i class="fa fa-tasks"></i>
                <?php elseif ($this->text->contains($event['event_name'], 'task.move')): ?>
                    <i class="fa fa-arrows-alt"></i>
                <?php elseif ($this->text->contains($event['event_name'], 'task')): ?>
                    <i class="fa fa-newspaper-o"></i>
                <?php elseif ($this->text->contains($event['event_name'], 'comment')): ?>
                    <i class="fa fa-comments-o"></i>
                <?php endif ?>
                &nbsp;<?= $this->dt->datetime($event['date_creation']) ?>
            </p>
            <div class="activity-content">
                <?= $this->avatar->render(
                    $event['creator_id'],
                    $event['author_username'],
                    $event['author_name'],
                    $event['email']
                ) ?>

                <?= $event['event_content'] ?>
            </div>
        </div>
    <?php endforeach ?>

<?php endif ?>