diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2012-11-09 13:54:13 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2012-11-09 13:54:13 +0100 |
commit | b6b540c44917744098805e5f70207289a3755eac (patch) | |
tree | 87902efd48c052eadb909092e033c50cbef62783 /hyperkitty/templates/threads | |
parent | 9433114ad50a8a1eab972e3990b9a37447e931f3 (diff) | |
download | hyperkitty-b6b540c44917744098805e5f70207289a3755eac.tar.gz hyperkitty-b6b540c44917744098805e5f70207289a3755eac.tar.xz hyperkitty-b6b540c44917744098805e5f70207289a3755eac.zip |
Use the new thread object in KittyStore
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> |