Uploading a file using django profiles

I am using the django-contrib django-profiles package and everything works fine - my only problem is that I would like the form to upload a file (for the avatar), unfortunately - the form does not upload the file.

Has anyone managed to successfully upload files using django profiles? I want to avoid having to set up a separate download view for the avatar only?

Any help is greatly appreciated!

Thanks Martin

+1


source to share


1 answer


In your template add enctype = "multipart / form-data" to the form tag. Example:



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

      

+4


source







All Articles