[Fixed]-Issue with saving checkbox value from form

1👍

In your models you have the STATUS_CHOICES‘s values(first value in each tuple) Critical, Medium, Low with first letter as upper case, but you did all lower cases in the form. You should modify the choices in models to use the same STATUS_CHOICES as the form one.

Leave a comment