Bootstrap3 inline forms in django-crispy-forms not showing form errors
I am using django-crispy-forms to render a Bootstrap3 inline form (code shown below), but the errors upon form submission (like skipping required fields) are not being shown. They do in normal and horizontal form layouts. Could someone please suggest the possible reason(s)? Models.py class Person(models.Model): name = models.CharField(max_length=500) city = models.CharField(max_length=50) country = models.CharField(max_length=50) email = models.EmailField(blank=True) Forms.py class EntryForm(forms.ModelForm): class Meta: model = Person def __init__(self, *args, **kwargs): super(EntryForm, self