我正在构建一个仪表板,您可以在其中交叉销售数据库中的数据。
例如,按卖方销售,按客户销售产品等。我让用户同时选择选项1和选项2。
我将表单返回视图并使用这些选项对模型进行注释:
if filter_opts.is_valid():
option_1 = filter_opts.cleaned_data["option_1"]
option_2 = filter_opts.cleaned_data["option_2"]
results = ventas.values(option_2).annotate(Count(option_1, distinct=True))
注释工作正常,如果我只是在模板中打印查询集
{% for case in results %}
{{ case }}
{% endfor %}
我可以看到它:
{'cliente': '502 EMSUR', 'prod_nombre__count': 9}
然后在模板中,我只想显示值。但是我不能正手告诉哪个值是做这样的事情的值:
{% for case in results %}
{{ case.option_1 }}
{{ case.option_2 }}
{% endfor %}
如果我遍历结果,则可以看到字段名称:
{% for case in results %}
{% for item in case %}
{{ item }}
{% endfor %}
{% endfor %}
如何显示该字段的值?
谢谢!
答案 0 :(得分:1)
由于case
中的每个results
都是字典,因此您可以使用模板内的属性.items
遍历其键和值:
{% for case in results %}
{% for item, value in case.items %}
{{ item }} - {{ value }}
{% endfor %}
{% endfor %}