我將視圖中的變量i傳遞給模板。 當我打印{{subject.i.id}}時,它不起作用。 plz幫助儘快。 謝謝。模板中的django變量
# the view
return render_to_response(
'feedback/feedback.html',
{'subjects': subject_list, 'n': n, 'list': sub_list, 'i': 0},
context_instance=RequestContext(request))
# the template
{% for s in list %}
<div id="{{ subjects.i.id }}">
{% for subject in s %}
<div> {{ subject }} </div>
{% endfor %}
</div>
{% endfor %}
你的代碼.. 。? – 2010-11-15 13:54:22