1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/sources/app/Template/project/tasks.php

33 lines
1.2 KiB
PHP
Raw Normal View History

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-dashboard fa-fw"></i>
<?= $this->a(t('Activity'), 'project', 'activity', array('project_id' => $project['id'])) ?>
</li>
2014-12-22 19:15:38 +01:00
</ul>
</div>
<section>
2015-02-25 17:29:06 +01:00
<?php if ($paginator->isEmpty()): ?>
2014-12-22 19:15:38 +01:00
<p class="alert"><?= t('No task') ?></p>
<?php else: ?>
2015-01-16 14:23:05 +01:00
<?= $this->render('task/table', array(
2015-02-25 17:29:06 +01:00
'paginator' => $paginator,
2014-12-22 19:15:38 +01:00
'categories' => $categories,
'columns' => $columns,
)) ?>
<?php endif ?>
</section>
</section>