mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
28 lines
No EOL
1.2 KiB
PHP
28 lines
No EOL
1.2 KiB
PHP
<section id="main">
|
|
<div class="page-header">
|
|
<ul>
|
|
<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>
|
|
<?php if ($project['is_public']): ?>
|
|
<li><i class="fa fa-rss-square fa-fw"></i><?= $this->a(t('RSS feed'), 'project', 'feed', array('token' => $project['token']), false, '', '', true) ?></li>
|
|
<?php endif ?>
|
|
</ul>
|
|
</div>
|
|
<section>
|
|
<?= $this->render('event/events', array('events' => $events)) ?>
|
|
</section>
|
|
</section>
|