I have some code structure very similar to this example: https://gist.github.com/ibarovic/3092910
Everything is working pretty well, except that the delete checkbox after each Book element is not shown at all. If I change
{% crispy formset formset.form.helper %}
to
{% crispy formset %}
the delete checkboxes are shown, but the form does not work anymore (b/c the HTML form tags are used not only once).
I suspect that those checkboxes are not known to the BookForm (b/c they somehow get added later by the inlineformset_factory), so they do not get added to the layout and are ignored. I have no idea how to circumvent that though.