我的 django 应用程序中有一个二维数组,我需要将其传递给 html 模板。
如何让 HTML 处理二维数组?
{% block content %}
<h2>Survey</h2>
<form>
{% for q in question %}
<p>{{q[0]}}</p>
<p>{{q[1]}}</p>
{% endfor %}
<input type="submit" value="submit">
</form>
{% endblock %}
我收到错误:
Could not parse the remainder: '[0]' from 'q[0]'