summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/board_edit.php2
-rw-r--r--templates/project_index.php4
-rw-r--r--templates/user_index.php2
3 files changed, 4 insertions, 4 deletions
diff --git a/templates/board_edit.php b/templates/board_edit.php
index 35589bb4..575536a8 100644
--- a/templates/board_edit.php
+++ b/templates/board_edit.php
@@ -20,7 +20,7 @@
</tr>
<?php foreach ($columns as $column): ?>
<tr>
- <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']') ?></td>
+ <td><?= Helper\form_label(t('Column %d', ++$i), 'title['.$column['id'].']', array('title="column_id='.$column['id'].'"')) ?></td>
<td><?= Helper\form_text('title['.$column['id'].']', $values, $errors, array('required')) ?></td>
<td><?= Helper\form_number('task_limit['.$column['id'].']', $values, $errors, array('placeholder="'.t('limit').'"')) ?></td>
<td>
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>
diff --git a/templates/user_index.php b/templates/user_index.php
index ccc955fc..fc15ae44 100644
--- a/templates/user_index.php
+++ b/templates/user_index.php
@@ -21,7 +21,7 @@
<?php foreach ($users as $user): ?>
<tr>
<td>
- <?= Helper\escape($user['username']) ?>
+ <span title="user_id=<?= $user['id'] ?>"><?= Helper\escape($user['username']) ?></span>
</td>
<td>
<?= $user['is_admin'] ? t('Yes') : t('No') ?>