使用模板标记在html模板中求和

时间:2011-03-11 16:36:08

标签: python django django-templates django-template-filters

我想在HTML中求和,但模板标签返回0,

View.py

def gen_Report(request):

### query returns below output 
list=[{'total': 1744, 'user': u'x'}, {'total': 13, 'user': u'y'}, {'total': 126, 'user': u'z'}, {'total': 46, 'user': u'm'}, {'total': 4, 'user': u'n'}, {'total': 8, 'user': u'o'},  {'total': 3, 'user': u'p'}]

return render_to_response('user.html', locals(),
                            context_instance = RequestContext(request))

模板:

user.html

  {% load temptags %}

 <table id="myTable" class="tablesorter">
    <thead>
    <tr>

    <th>S.No</th>
    <th>role</th>
    <th>Count</th>

    </tr>
    </thead>
    {% for fetch in list %}

    <tr>
    <td>{{forloop.counter}}</td>
    <td>{{fetch.user}}</td>
    <td>{{fetch.total}}</td>



    {% endfor %}
    <td>{{ list.total|running_total}}</td>
    <tr>

    </table>

模板标签:

from django.template import Library
register = Library()
@register.filter
def running_total(list_total):
  return sum(d.get('list_sum') for d in list_total)

输出:

S.No    user          Count
1     x       1744
2     y         13
3     z         126
4     m         46
5     n              4
6     o          8
Sum------------------>   0  (it returns zero)

我在这里做错了什么?

你可以帮助我,如何在这里使用模板标签返回总和?

2 个答案:

答案 0 :(得分:7)

您的模板标记看起来不对。您有role_total作为参数,然后遍历list_total(看似未定义),并从列表中的每个字典中尝试获取看似未定义的密钥list_sum

from django.template import Library
register = Library()
@register.filter
def running_total(your_dict_list):
   return sum(d['total'] for d in your_dict_list)

并从模板中调用<td>{{ list|running_total}}</td>

答案 1 :(得分:2)

我怀疑你的列表是一个迭代器。所以第一次迭代,第二次迭代。 所以你应该做这样的事情

for d in list_total:
   d.set('list_sum', list(d.get('list_sum')))
在调用模板之前