From 122d15b1a293e902a53bd53d79e26ee5419ccca5 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Aug 12 2020 19:09:05 +0000 Subject: Show the assignee's avatar on the board If the ticket shown in the board is assigned to someone, show this person's avatar. This helps not only seeing what is in progress or blocked but also who is working on what or being blocked. Fixes https://pagure.io/pagure/issue/4959 Signed-off-by: Pierre-Yves Chibon --- diff --git a/pagure/templates/board.html b/pagure/templates/board.html index 26509ae..46a7eb6 100644 --- a/pagure/templates/board.html +++ b/pagure/templates/board.html @@ -66,6 +66,9 @@ #{{ bissue.issue.id }} {% endif %} + {% if bissue.issue.assignee %} + - {{ bissue.issue.assignee.username | avatar(size=20) | safe}} + {% endif %} - {{ bissue.issue.title | truncate(80, False, '...') }}