Django field validation warnings

58 Views Asked by At

I am new to Django and confronted with the following problem:

Usually I have a form where I have defined my fields and according validation rules.

Usually there are fields which have potentially invalid inputs. These are then validated and an error is shown in case. An invalid form leads to the expected behaviour that the data isn't persisted to the database.

Now I have a form where I have strict validation rules which should lead (to displaying) an error and data not persisting to the database and besides I have looser validation rules which should lead to displaying of a warning/hint but persisting to the database.

Example

I have a list where the user could enter how many male, female and diverse participants were in a given course. Later on I ask questions about how many male, female and diverse partcipants would like to do another course from our program.

There may be inconsistencies at the moment which I want to warn about but nevertheless accept / save the data as given.

Is there any mechanics in Django which allows displaying "warnings", "hints" etc. per field like the error messages?

0

There are 0 best solutions below