2014-07-20 12:26:15 +02:00
|
|
|
<section id="main">
|
|
|
|
<div class="page-header">
|
|
|
|
<ul>
|
2015-08-16 17:04:56 +02:00
|
|
|
<?php if ($this->user->isAdmin()): ?>
|
|
|
|
<li><i class="fa fa-plus fa-fw"></i><?= $this->url->link(t('New project'), 'project', 'create') ?></li>
|
2014-11-23 20:13:38 +01:00
|
|
|
<?php endif ?>
|
2015-08-16 17:04:56 +02:00
|
|
|
<li><i class="fa fa-lock fa-fw"></i><?= $this->url->link(t('New private project'), 'project', 'create', array('private' => 1)) ?></li>
|
2014-07-20 12:26:15 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<section>
|
2015-02-25 17:29:06 +01:00
|
|
|
<?php if ($paginator->isEmpty()): ?>
|
|
|
|
<p class="alert"><?= t('No project') ?></p>
|
|
|
|
<?php else: ?>
|
|
|
|
<table class="table-fixed">
|
|
|
|
<tr>
|
|
|
|
<th class="column-8"><?= $paginator->order(t('Id'), 'id') ?></th>
|
|
|
|
<th class="column-8"><?= $paginator->order(t('Status'), 'is_active') ?></th>
|
2015-08-16 17:04:56 +02:00
|
|
|
<th class="column-8"><?= $paginator->order(t('Identifier'), 'identifier') ?></th>
|
2015-02-25 17:29:06 +01:00
|
|
|
<th class="column-20"><?= $paginator->order(t('Project'), 'name') ?></th>
|
|
|
|
<th><?= t('Columns') ?></th>
|
|
|
|
</tr>
|
|
|
|
<?php foreach ($paginator->getCollection() as $project): ?>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?php if ($project['is_active']): ?>
|
|
|
|
<?= t('Active') ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<?= t('Inactive') ?>
|
|
|
|
<?php endif ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->e($project['identifier']) ?>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<?= $this->url->link('<i class="fa fa-th"></i>', 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Board')) ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
<?php if ($project['is_public']): ?>
|
|
|
|
<i class="fa fa-share-alt fa-fw"></i>
|
|
|
|
<?php endif ?>
|
|
|
|
<?php if ($project['is_private']): ?>
|
|
|
|
<i class="fa fa-lock fa-fw"></i>
|
|
|
|
<?php endif ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
|
2015-08-16 17:04:56 +02:00
|
|
|
<?= $this->url->link($this->e($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
|
2015-04-21 17:56:16 +02:00
|
|
|
<?php if (! empty($project['description'])): ?>
|
2015-08-16 17:04:56 +02:00
|
|
|
<span class="tooltip" title='<?= $this->e($this->text->markdown($project['description'])) ?>'>
|
2015-04-21 17:56:16 +02:00
|
|
|
<i class="fa fa-info-circle"></i>
|
|
|
|
</span>
|
|
|
|
<?php endif ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
</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>
|
2014-10-22 19:59:09 +02:00
|
|
|
<?php endforeach ?>
|
2015-02-25 17:29:06 +01:00
|
|
|
</table>
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2015-02-25 17:29:06 +01:00
|
|
|
<?= $paginator ?>
|
2014-10-22 19:59:09 +02:00
|
|
|
<?php endif ?>
|
2014-07-20 12:26:15 +02:00
|
|
|
</section>
|
2015-04-21 17:56:16 +02:00
|
|
|
</section>
|