[Django]-Using HTML in Crispy Forms formset

3👍

I’m the lead developer of crispy-forms

The problem here is that you are using bootstrap/table_inline_formset.html which currently doesn’t support specifying a layout.

It’s stated clearly in the docs: http://django-crispy-forms.readthedocs.org/en/latest/crispy_tag_formsets.html#custom-templates-and-table-inline-formsets

This template doesn’t currently take into account any layout you have specified and only works with bootstrap template pack.

I’m aware this is not the expected behavior and there is an open issue about it. I’m hopefully working this week on solving it somehow.

Leave a comment