This form contains all standard widgets, Django provides out of the box.
Here we use a native Django Form instance to render the form suitable for the <django-formset>-widget.
Then that form instance is rendered using the special template tag render_form. The template used to render such a form shall be written as:
{% load render_form from formsetify %}
<django-formset endpoint="{{ request.path }}" csrf-token="{{ csrf_token }}">
{% render_form form field_classes=... form_classes=... fieldset_classes=... label_classes=... control_classes=... %}
</django-formset>