Improve project navigation
This commit is contained in:
33
app/Template/projectinfo/tasks.php
Normal file
33
app/Template/projectinfo/tasks.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<section id="main">
|
||||
<div class="page-header">
|
||||
<ul>
|
||||
<li>
|
||||
<span class="dropdown">
|
||||
<span>
|
||||
<i class="fa fa-caret-down"></i> <a href="#" class="dropdown-menu"><?= t('Actions') ?></a>
|
||||
<ul>
|
||||
<?= $this->render('project/dropdown', array('project' => $project)) ?>
|
||||
</ul>
|
||||
</span>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-table fa-fw"></i>
|
||||
<?= $this->url->link(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?>
|
||||
</li>
|
||||
<li>
|
||||
<i class="fa fa-folder fa-fw"></i>
|
||||
<?= $this->url->link(t('All projects'), 'project', 'index') ?>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<?php if ($paginator->isEmpty()): ?>
|
||||
<p class="alert"><?= t('There is no completed tasks at the moment.') ?></p>
|
||||
<?php else: ?>
|
||||
<?= $this->render('task/table', array(
|
||||
'paginator' => $paginator,
|
||||
'categories' => $categories,
|
||||
'columns' => $columns,
|
||||
)) ?>
|
||||
<?php endif ?>
|
||||
</section>
|
||||
Reference in New Issue
Block a user