Open project activities in modal box

This commit is contained in:
Frederic Guillot
2017-01-08 12:23:25 -05:00
parent e377f450ad
commit ea2cbb76d5
5 changed files with 8 additions and 10 deletions

View File

@@ -1,14 +1,12 @@
<section id="main">
<?= $this->projectHeader->render($project, 'ActivityController', $this->app->getRouterAction()) ?>
<div class="page-header">
<h2><?= t('%s\'s activity', $project['name']) ?></h2>
<?php if ($project['is_public']): ?>
<div class="menu-inline">
<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>
</div>
<?php endif ?>
</div>
<?= $this->render('event/events', array('events' => $events)) ?>
</section>
<?= $this->render('event/events', array('events' => $events)) ?>