summaryrefslogtreecommitdiff
path: root/templates/project_index.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/project_index.php')
-rw-r--r--templates/project_index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/project_index.php b/templates/project_index.php
index 74d807f6..c7c7d226 100644
--- a/templates/project_index.php
+++ b/templates/project_index.php
@@ -25,7 +25,7 @@
<?php foreach ($projects as $project): ?>
<tr>
<td>
- <a href="?controller=board&amp;action=show&amp;project_id=<?= $project['id'] ?>"><?= Helper\escape($project['name']) ?></a>
+ <a href="?controller=board&amp;action=show&amp;project_id=<?= $project['id'] ?>" title="project_id=<?= $project['id'] ?>"><?= Helper\escape($project['name']) ?></a>
</td>
<td>
<?= $project['is_active'] ? t('Active') : t('Inactive') ?>
@@ -51,7 +51,7 @@
<ul>
<?php foreach ($project['columns'] as $column): ?>
<li>
- <?= Helper\escape($column['title']) ?> (<?= $column['nb_active_tasks'] ?>)
+ <span title="column_id=<?= $column['id'] ?>"><?= Helper\escape($column['title']) ?></span> (<?= $column['nb_active_tasks'] ?>)
</li>
<?php endforeach ?>
</ul>