From 1abc3e55b23ba41b913fe2aa0fbd1445829538bb Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Dec 02 2016 09:45:58 +0000 Subject: List the avatar of all the people subscribed instead of their username --- diff --git a/pagure/templates/issue.html b/pagure/templates/issue.html index cfea33a..6e5f1bf 100644 --- a/pagure/templates/issue.html +++ b/pagure/templates/issue.html @@ -318,7 +318,12 @@
- {{ subscribers | join(', ') }} + {% for subscriber in subscribers %} + {{ + subscriber |avatar(size=24) | safe + }} + {% endfor %}