Changes to stay compatible with Django 1.2

svn: r19711
This commit is contained in:
Doug Blank 2012-05-30 16:23:04 +00:00
parent 1b87f73f5e
commit 228cc1d4d5

View File

@ -18,9 +18,9 @@
{% endif %} {% endif %}
<form method="post">{% csrf_token %} <form method="post">{% csrf_token %}
{% for field in form %} {% for f in form.forms %}
<tr> <tr>
{{field}} {{f}}
</tr> </tr>
{% endfor %} {% endfor %}