diff options
Diffstat (limited to 'templates/board_index.php')
-rw-r--r-- | templates/board_index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/board_index.php b/templates/board_index.php index aa581680..20862a4b 100644 --- a/templates/board_index.php +++ b/templates/board_index.php @@ -54,9 +54,9 @@ dropzone="copy"> <?php foreach ($column['tasks'] as $task): ?> <div class="draggable-item" draggable="true"> - <div class="task task-<?= $task['color_id'] ?>" data-task-id="<?= $task['id'] ?>"> + <div class="task task-<?= $task['color_id'] ?>" data-task-id="<?= $task['id'] ?>" title="<?= t('View this task') ?>"> - <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>" title="<?= t('View this task') ?>">#<?= $task['id'] ?></a> - + <a href="?controller=task&action=edit&task_id=<?= $task['id'] ?>" title="<?= t('Edit this task') ?>">#<?= $task['id'] ?></a> - <span class="task-user"> <?php if (! empty($task['owner_id'])): ?> @@ -86,4 +86,4 @@ </section> -<script type="text/javascript" src="assets/js/board.js"></script>
\ No newline at end of file +<script type="text/javascript" src="assets/js/board.js"></script> |