17 lines
731 B
PHP
17 lines
731 B
PHP
<div>
|
|
<?php if ($this->user->hasProjectAccess('ProjectViewController', 'show', $project['id'])): ?>
|
|
<?= $this->render('project/dropdown', array('project' => $project)) ?>
|
|
<?php else: ?>
|
|
<strong><?= '#'.$project['id'] ?></strong>
|
|
<?php endif ?>
|
|
|
|
<?= $this->hook->render('template:dashboard:project:before-title', array('project' => $project)) ?>
|
|
|
|
<span class="table-list-title <?= $project['is_active'] == 0 ? 'status-closed' : '' ?>">
|
|
<?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?>
|
|
</span>
|
|
|
|
<?= $this->hook->render('template:dashboard:project:after-title', array('project' => $project)) ?>
|
|
|
|
</div>
|