File upload with django-profiles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T22:51:56Z http://stackoverflow.com/feeds/question/308596 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/308596/file-upload-with-django-profiles 0 File upload with django-profiles Martin 2008-11-21T12:20:29Z 2009-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#437809 3 Answer by izzy for File upload with django-profiles izzy 2009-01-13T02:48:24Z 2009-01-13T02:48:24Z <p>In your template add enctype="multipart/form-data" in form tag. Example:</p> <pre><code>&lt;form method="post" action="." enctype="multipart/form-data"&gt; </code></pre>