{% extends "base.html" %} {% block title %}Formset with `extra = 0` (pre Django 1.2){% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{{ formset.management_form }}

{% endblock %} {% block sidebar %}

If you'd rather not have extra forms in your template, pass `extra = 0` to `formset_factory`, and supply a custom form template. Take a look at the source for `formset_with_template` in views.py, to see how this works.

If you're using Django 1.2+, this is much easier, using the new `empty_form` property.

{% endblock %}