Спасибо.
views.py:
form = MyForm(data = request.POST)
...
return render_to_response("my_template.html", {"form": form })
<form method="post">
{{ form }}
</form>
form = MyForm(data = request.POST)
...
return render_to_response("my_template.html", {"form": form })
<form method="post">
{{ form }}
</form>
igorekkСпасибо.
{{ form.as_p }} ?
form.as_table