From 359b720fb54559ec564bb52281575c7c18cb0f0c Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mon, 19 Mar 2012 19:52:53 +0100 Subject: I don't use list but directly int there --- templates/search2.html | 6 +++--- 1 file 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 %}
@@ -54,8 +54,8 @@ {% endfor %}
    -
  • {{email.participants|length}} participants
  • -
  • {{email.answers|length}} comments
  • +
  • {{email.participants}} participants
  • +
  • {{email.answers}} comments
    -- cgit