标签: python django
我想遍历2组数据并在模板中显示值。
我有类似的东西:
{% for email,phone in user.email_set.all, user.phone_set.all %} {{email}} {{phone}} {% endfor %}
不幸的是,我收到TemplateSyntaxError:
'for' statements should use the format 'for x in y'
有办法吗?