diff options
Diffstat (limited to 'app/Templates/project_index.php')
-rw-r--r-- | app/Templates/project_index.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/Templates/project_index.php b/app/Templates/project_index.php index df153fe7..1a3dbd49 100644 --- a/app/Templates/project_index.php +++ b/app/Templates/project_index.php @@ -31,21 +31,23 @@ <?= $project['is_active'] ? t('Active') : t('Inactive') ?> </td> <td> + <ul> <?php if ($project['nb_tasks'] > 0): ?> <?php if ($project['nb_active_tasks'] > 0): ?> - <a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('%d tasks on the board', $project['nb_active_tasks']) ?></a>, + <li><a href="?controller=board&action=show&project_id=<?= $project['id'] ?>"><?= t('%d tasks on the board', $project['nb_active_tasks']) ?></a></li> <?php endif ?> <?php if ($project['nb_inactive_tasks'] > 0): ?> - <a href="?controller=project&action=tasks&project_id=<?= $project['id'] ?>"><?= t('%d closed tasks', $project['nb_inactive_tasks']) ?></a>, + <li><a href="?controller=project&action=tasks&project_id=<?= $project['id'] ?>"><?= t('%d closed tasks', $project['nb_inactive_tasks']) ?></a></li> <?php endif ?> - <?= t('%d tasks in total', $project['nb_tasks']) ?> + <li><?= t('%d tasks in total', $project['nb_tasks']) ?></li> <?php else: ?> - <?= t('no task for this project') ?> + <li><?= t('no task for this project') ?></li> <?php endif ?> + </ul> </td> <td> <ul> |