It took me quite some time to find out I should use {% bootstrap_form form.forms.my_inner_form %} and {% bootstrap_field form.forms.my_inner_form.my_inner_field %}. Actual documentation talks about form.composite_fields a lot, but that's not usable here. Also {{ form.my_inner_form }} works, but {% bootstrap_form form.my_inner_form %} surprisingly doesn't.
It took me quite some time to find out I should use
{% bootstrap_form form.forms.my_inner_form %}and{% bootstrap_field form.forms.my_inner_form.my_inner_field %}. Actual documentation talks aboutform.composite_fieldsa lot, but that's not usable here. Also{{ form.my_inner_form }}works, but{% bootstrap_form form.my_inner_form %}surprisingly doesn't.