diff options
author | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 08:46:27 -0400 |
---|---|---|
committer | Frédéric Guillot <fguillot@users.noreply.github.com> | 2014-05-03 08:46:27 -0400 |
commit | 5d061594486c0d5761ac80a7548fdb4fdad0619b (patch) | |
tree | d2b41f57705c53d0b94724ced2c6cb9b826ee913 /templates/project_index.php | |
parent | e2d658b396d8bd1f60261924c05a0c6481647c14 (diff) |
Improve webhooks documentation
Diffstat (limited to 'templates/project_index.php')
-rw-r--r-- | templates/project_index.php | 4 |
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&action=show&project_id=<?= $project['id'] ?>"><?= Helper\escape($project['name']) ?></a> + <a href="?controller=board&action=show&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> |