mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Merge pull request #1115 from eeintech/fix_form_errors
Fix for #1111 (missing logic to check for model errors)
This commit is contained in:
commit
9ac334ddd2
@ -27,7 +27,11 @@ class HelperForm(forms.ModelForm):
|
||||
self.helper = FormHelper()
|
||||
|
||||
self.helper.form_tag = False
|
||||
self.helper.form_show_errors = False
|
||||
|
||||
# Check for errors from model validation
|
||||
# If none, disable crispy form errors
|
||||
if not self.errors:
|
||||
self.helper.form_show_errors = False
|
||||
|
||||
"""
|
||||
Create a default 'layout' for this form.
|
||||
|
Loading…
Reference in New Issue
Block a user