Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warnings (or even info messages) instead of only errors in Django

Does the concept of severity exist in Django's form validation or is it only errors?

Also, how about suppressing warnings/errors?

like image 949
kmt Avatar asked Feb 16 '10 04:02

kmt


2 Answers

Old question, but I think it is still relevant.

It really depends on what you consider to be a warning.

  • You may accept partially valid data in your form (not raise ValidationError on fields upon which you want warnings). Then, using the contrib.messages framework (or similar), you may display a warning box on the next page (be it the same form page, or a redirection to home or any other page)
  • Alternatively, you might want confirmation instead of a warning. You may add or alter fields dynamically upon creation, so why not add hidden "I accept the risks" checkboxes that are required only if your form raises that warning?

    1. User loads form. Checkbox is an hidden HTML input set to false.
    2. User fills form with data that raises warning. Form is displayed again, but now the checkbox is visible.
    3. User checks box then resubmits their form.
    4. The server handles the data correctly and ignores the warning.

The second option has the advantage of not requiring cookies, and it also adds interactivity (your user might not want to proceed because of the warning...).

In your code, all you would have to do is this:

#views.py
...
if form.is_valid():
    # proceed
else:
    form.fields["my_checkbox"].widget = widgets.CheckboxInput
    # re-display form
...


#forms.py
...
def clean_myfield(self):
    # do your cleaning
    if (myfield_warning==True) and not (my_checkbox==True):
        raise ValidationError("blabla")
    else:
        return myfield

In your view, you may check for appropriate errors in form.errors if needed.

like image 69
sleblanc Avatar answered Oct 18 '22 10:10

sleblanc


Django forms can only raise ValidationErrors (see here). One way to get around this is to use the new messaging system. There are 5 levels of messages defined, with the ability to define additional custom message levels.

As for suppressing errors/warnings, you can always simply ignore form.errors in your template. Also take a look at the clean methods in the forms module - you should be able to suppress some warnings there.

like image 3
Rishabh Manocha Avatar answered Oct 18 '22 08:10

Rishabh Manocha