42 lines
2.0 KiB
PHP
42 lines
2.0 KiB
PHP
<h2><?= t('My projects') ?></h2>
|
|
<?php if ($paginator->isEmpty()): ?>
|
|
<p class="alert"><?= t('Your are not member of any project.') ?></p>
|
|
<?php else: ?>
|
|
<table class="table-fixed">
|
|
<tr>
|
|
<th class="column-8"><?= $paginator->order('Id', 'id') ?></th>
|
|
<th class="column-20"><?= $paginator->order(t('Project'), 'name') ?></th>
|
|
<th><?= t('Columns') ?></th>
|
|
</tr>
|
|
<?php foreach ($paginator->getCollection() as $project): ?>
|
|
<tr>
|
|
<td>
|
|
<?= $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
|
|
</td>
|
|
<td>
|
|
<?php if ($this->user->isManager($project['id'])): ?>
|
|
<?= $this->url->link('<i class="fa fa-cog"></i>', 'project', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Settings')) ?>
|
|
<?php endif ?>
|
|
|
|
<?= $this->url->link('<i class="fa fa-calendar"></i>', 'calendar', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Calendar')) ?>
|
|
|
|
<?= $this->url->link($this->e($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
|
|
<?php if (! empty($project['description'])): ?>
|
|
<span class="column-tooltip" title='<?= $this->e($this->text->markdown($project['description'])) ?>'>
|
|
<i class="fa fa-info-circle"></i>
|
|
</span>
|
|
<?php endif ?>
|
|
</td>
|
|
<td class="dashboard-project-stats">
|
|
<?php foreach ($project['columns'] as $column): ?>
|
|
<strong title="<?= t('Task count') ?>"><?= $column['nb_tasks'] ?></strong>
|
|
<span><?= $this->e($column['title']) ?></span>
|
|
<?php endforeach ?>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</table>
|
|
|
|
<?= $paginator ?>
|
|
<?php endif ?>
|