If I have a model (extract):
class Coupon(models.Model): image = models.ImageField(max_length=64, null=True, upload_to=\"couponimages\")
So a better way to exclude just a single field in the template might be:
{% for field in form %} {% if field != "image" %} {{ field }} {% endif %} {% endfor %}
Beats manually writing out all the fields.