[Fixed]-How to trigger the clear checkbox in an ImageField in django

1👍

What you mean clear checkbox? If you look on the checkbox in django admin, so it just make:

obj.image_file = None
obj.save()

while saving your form.

Leave a comment