[Fixed]-Problems with Django ImageField upload

1👍

A useful piece of documentation is “Binding uploaded files to a form”. Possibly if you follow this you will overcome your issue.

Among other things, it is important that include this attribute in your forms element:

<form method="post" action="..." enctype="multipart/form-data">
👤Wtower

Leave a comment