diff options
Diffstat (limited to 'hyperkitty/templates/threads')
-rw-r--r-- | hyperkitty/templates/threads/right_col.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hyperkitty/templates/threads/right_col.html b/hyperkitty/templates/threads/right_col.html index 253aa10..1b1cf76 100644 --- a/hyperkitty/templates/threads/right_col.html +++ b/hyperkitty/templates/threads/right_col.html @@ -1,4 +1,5 @@ {% load gravatar %} +{% load hk_generic %} <!-- right column --> <section id="thread_overview_info"> @@ -47,12 +48,12 @@ </form> </div> <div id="participants"> - <span id="participants_title"> participants </span>({{participants|length}}) + <span id="participants_title">participants</span> ({{participants|length}}) <ul> - {% for key,value in participants.items %} + {% for name, email in participants.items|sort %} <li> - {% gravatar_img_for_email value.email 20%} - {{key}} + {% gravatar_img_for_email email 20 %} + {{ name }} </li> {% endfor %} </ul> |