diff options
author | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-19 19:52:53 +0100 |
---|---|---|
committer | Pierre-Yves Chibon <pingou@pingoured.fr> | 2012-03-19 19:52:53 +0100 |
commit | 359b720fb54559ec564bb52281575c7c18cb0f0c (patch) | |
tree | 222bd4363878f840b2f64f3583466e072f15f546 | |
parent | cb1ac726282db504a522acf83cbd78da15de0895 (diff) | |
download | hyperkitty-359b720fb54559ec564bb52281575c7c18cb0f0c.tar.gz hyperkitty-359b720fb54559ec564bb52281575c7c18cb0f0c.tar.xz hyperkitty-359b720fb54559ec564bb52281575c7c18cb0f0c.zip |
I don't use list but directly int there
-rw-r--r-- | templates/search2.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/search2.html b/templates/search2.html index 7562e23..7a12795 100644 --- a/templates/search2.html +++ b/templates/search2.html @@ -17,7 +17,7 @@ {% block content %} - {% for email in threads %} + {% for email in threads.object_list %} <!-- New thread --> <div class="thread"> <div class="notsaved"> @@ -54,8 +54,8 @@ {% endfor %} </ul> <ul class="inline-block"> - <li class="participant"> {{email.participants|length}} participants</li> - <li class="discussion"> {{email.answers|length}} comments</li> + <li class="participant"> {{email.participants}} participants</li> + <li class="discussion"> {{email.answers}} comments</li> </ul> <ul class="inline-block"> <li class="like"> +{{email.liked}}</li> |