summaryrefslogtreecommitdiff
path: root/app/Template/activity/project.php
blob: ce1c8c0ff628c179e1ef6438fdcf867f9c3f8d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<section id="main">
    <?= $this->projectHeader->render($project, 'AnalyticController', $this->app->getRouterAction()) ?>

    <?php if ($project['is_public']): ?>
    <div class="menu-inline pull-right">
        <ul>
            <li><i class="fa fa-rss-square fa-fw"></i><?= $this->url->link(t('RSS feed'), 'FeedController', 'project', array('token' => $project['token']), false, '', '', true) ?></li>
            <li><i class="fa fa-calendar fa-fw"></i><?= $this->url->link(t('iCal feed'), 'ICalendarController', 'project', array('token' => $project['token'])) ?></li>
        </ul>
    </div>
    <?php endif ?>

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