summaryrefslogtreecommitdiff
path: root/app/Template/project/index.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-13 22:36:41 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-13 22:36:41 -0400
commitae70f47cc12587414c03b11a377cba97e1f10361 (patch)
treee42aaa89320597c1b15d56cf02b81fb80f8809c2 /app/Template/project/index.php
parent64e10a645accf8c80c0e7b6686de2ed38621805a (diff)
Added dropdown for projects
Diffstat (limited to 'app/Template/project/index.php')
-rw-r--r--app/Template/project/index.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/app/Template/project/index.php b/app/Template/project/index.php
index e10467eb..3edb0523 100644
--- a/app/Template/project/index.php
+++ b/app/Template/project/index.php
@@ -28,7 +28,7 @@
<?php foreach ($paginator->getCollection() as $project): ?>
<tr>
<td>
- <?= $this->url->link('#'.$project['id'], 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link') ?>
+ <?= $this->render('project/dropdown', array('project' => $project)) ?>
</td>
<td>
<?php if ($project['is_active']): ?>
@@ -38,9 +38,6 @@
<?php endif ?>
</td>
<td>
- <?= $this->url->link('<i class="fa fa-th"></i>', 'board', 'show', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Board')) ?>
- <?= $this->url->link('<i class="fa fa-sliders fa-fw"></i>', 'gantt', 'project', array('project_id' => $project['id']), false, 'dashboard-table-link', t('Gantt chart')) ?>
-
<?php if ($project['is_public']): ?>
<i class="fa fa-share-alt fa-fw" title="<?= t('Shared project') ?>"></i>
<?php endif ?>
@@ -54,7 +51,7 @@
</span>
<?php endif ?>
- <?= $this->url->link($this->text->e($project['name']), 'project', 'show', array('project_id' => $project['id'])) ?>
+ <?= $this->url->link($this->text->e($project['name']), 'board', 'show', array('project_id' => $project['id'])) ?>
</td>
<td>
<?= $this->dt->date($project['start_date']) ?>