2
我在我的django應用程序中有一個二維數組,我需要傳遞給html模板。二維數組Django
如何讓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]'