From c4706dc6b77d8eaa57a3321b61acf76eec49e23b Mon Sep 17 00:00:00 2001 From: Aurélien Bompard Date: Fri, 9 Nov 2012 13:54:13 +0100 Subject: Use the new thread object in KittyStore --- hyperkitty/templates/threads/right_col.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'hyperkitty/templates/threads') 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 %}
@@ -47,12 +48,12 @@
- participants ({{participants|length}}) + participants ({{participants|length}})
    - {% for key,value in participants.items %} + {% for name, email in participants.items|sort %}
  • - {% gravatar_img_for_email value.email 20%} - {{key}} + {% gravatar_img_for_email email 20 %} + {{ name }}
  • {% endfor %}
-- cgit