File upload with django-profiles - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T22:51:56Zhttp://stackoverflow.com/feeds/question/308596http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308596/file-upload-with-django-profiles0File upload with django-profilesMartin2008-11-21T12:20:29Z2009-01-13T02:48:24Z
<p>I'm using the django-contrib package <a href="http://www.bitbucket.org/ubernostrum/django-profiles/wiki/Home" rel="nofollow">django-profiles</a>, and everything is working great - my only issue is that I would like the form to upload a file (for an avatar), unfortunately - the form does not upload the file.</p>
<p>Has anyone successfully managed to get file uploads working with django-profiles? I want to avoid having to set up a seperate upload view just for the avatar?</p>
<p>Any help is much appreciated! </p>
<p>Thanks,
Martin</p>
http://stackoverflow.com/questions/308596/file-upload-with-django-profiles/437809#4378093Answer by izzy for File upload with django-profilesizzy2009-01-13T02:48:24Z2009-01-13T02:48:24Z<p>In your template add enctype="multipart/form-data" in form tag. Example:</p>
<pre><code><form method="post" action="." enctype="multipart/form-data">
</code></pre>