summaryrefslogtreecommitdiff
path: root/app/Template/activity/project.php
blob: ce1f8bba5982758896a576d40c371bb87d44cbec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="page-header">
    <h2><?= t('%s\'s activity', $project['name']) ?></h2>

    <?php if ($project['is_public']): ?>
        <ul>
            <li><?= $this->url->icon('rss-square', t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
            <li><?= $this->url->icon('calendar', t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
        </ul>
    <?php endif ?>
</div>

<?= $this->render('event/events', array('events' => $events)) ?>