{% extends "base.html" %} {% block title %}Basic Formset with Admin Widget{% endblock %} {% block extrahead %} {{ formset.media }} {% endblock %} {% block content %}
{% for form in formset.forms %}
Name {{ form.name }}
Start Date {{ form.start_date }}
End Date {{ form.end_date }}
{% endfor %}

{{ formset.management_form }}

{% endblock %} {% block sidebar %}

Here's another example that uses the "added" callback, based on a comment submitted by lfborjas.

I apologize for not styling the calendar popup properly -- didn't really have much time. Sure, it'd have made the demo prettier, but I think you'll still get the idea, ugly calendar or no.

{% endblock %}