From 150c73d3434bcff48f95146231c72ca974a8fddb Mon Sep 17 00:00:00 2001 From: Karl Sutt Date: Thu, 23 Aug 2012 16:32:57 +0300 Subject: [PATCH] Fix missing formset template. Add formset.html back in which fixes pull request #20. --- bootstrapform/templates/bootstrapform/formset.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bootstrapform/templates/bootstrapform/formset.html diff --git a/bootstrapform/templates/bootstrapform/formset.html b/bootstrapform/templates/bootstrapform/formset.html new file mode 100644 index 0000000..1c84e73 --- /dev/null +++ b/bootstrapform/templates/bootstrapform/formset.html @@ -0,0 +1,7 @@ +{{ formset.management_form }} + +{% for form in formset %} + + {% include "bootstrapform/form.html" with form=form %} + +{% endfor %}