I am using django-angular for a project and would like to use django-bootstrap3 with django forms. I want to show the angular template model in a template for which code:
class InfoForm(NgModelFormMixin, NgFormValidationMixin, NgModelForm):
form_name = 'infoForm'
class Meta:
model = models.InfoModel
To display it using django-bootstrap3, I used {% bootstrap_form form %}in my template, but this does not work as it should:

What can be done to make both teams work correctly?
source
share