#4960 Show the assignee's avatar on the board
Merged 3 years ago by pingou. Opened 3 years ago by pingou.

@@ -66,6 +66,9 @@ 

                <span class="fa fa-fw text-danger fa-exclamation-circle pt-1 icon_id"></span>

                <span class="text-danger font-weight-bold id_txt">#{{ bissue.issue.id }}</span>

              {% endif %}

+             {% if bissue.issue.assignee %}

+             - {{ bissue.issue.assignee.username | avatar(size=20) | safe}}

+             {% endif %}

                - {{ bissue.issue.title | truncate(80, False, '...') }}

                </a>

              </li>

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.

Signed-off-by: Pierre-Yves Chibon pingou@pingoured.fr

rebased onto ae4d50337c712fcdcb84d724df79734be8a3cf0f

3 years ago

rebased onto 122d15b

3 years ago

Pull-Request has been merged by pingou

3 years ago

Thanks for the reviews :)