Learn more about these different git repos.
Other Git URLs
122d15b
@@ -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
Is this the same as #4961 ?
rebased onto ae4d50337c712fcdcb84d724df79734be8a3cf0f
rebased onto 122d15b
:thumbsup:
+1
Pull-Request has been merged by pingou
Thanks for the reviews :)
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