I want to automatically add new forms to a Django formset using Ajax, so that when the user clicks an \"add\" button it runs JavaScript that adds a new form (which is part o
Simplified version of Paolo's answer using empty_form as a template.
My Services {{ serviceFormset.management_form }} {% for form in serviceFormset.forms %} {{ form.as_table }} {% endfor %} {{ serviceFormset.empty_form.as_table }}