2014-12-22 19:15:38 +01:00
|
|
|
<section id="main">
|
|
|
|
<div class="page-header">
|
|
|
|
<ul>
|
2015-02-25 17:29:06 +01:00
|
|
|
<li>
|
|
|
|
<i class="fa fa-table fa-fw"></i>
|
|
|
|
<?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-calendar fa-fw"></i>
|
|
|
|
<?= $this->a(t('Calendar'), 'calendar', 'show', array('project_id' => $project['id'])) ?>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-search fa-fw"></i>
|
|
|
|
<?= $this->a(t('Search'), 'project', 'search', array('project_id' => $project['id'])) ?>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<i class="fa fa-check-square-o fa-fw"></i>
|
|
|
|
<?= $this->a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?>
|
|
|
|
</li>
|
2014-12-22 19:15:38 +01:00
|
|
|
<?php if ($project['is_public']): ?>
|
2015-01-16 14:23:05 +01:00
|
|
|
<li><i class="fa fa-rss-square fa-fw"></i><?= $this->a(t('RSS feed'), 'project', 'feed', array('token' => $project['token']), false, '', '', true) ?></li>
|
2014-12-22 19:15:38 +01:00
|
|
|
<?php endif ?>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<section>
|
2015-04-21 17:56:16 +02:00
|
|
|
<?= $this->render('event/events', array('events' => $events)) ?>
|
2014-12-22 19:15:38 +01:00
|
|
|
</section>
|
|
|
|
</section>
|