i have two forms called
`{{form.f1}}`
and
`{{form.f2}}`.
i would like to acces the two forms(f1 and f2) in the django template via forloop. my forloop is
{% for n in formList %}
{{form.f?}}
{% endfor %}
in my view.py, formList is
{'formList':range(1,3)}
i do not know how to integrate N in the forloop and i need your help to call the dynamic forms.
thanx.