Tagged Questions
6
votes
3answers
7k views
Best practice for uploading and image file with Django Forms (Django 1.0)
could you please help me to get image upload working on a view with django forms
Models.py
class User_Profile(models.Model):
user = models.OneToOneField(User, unique=True, related_name='profile')
...
3
votes
2answers
568 views
processing an image upload form in django: when to use save() vs chunks() vs cleaned_data?
I have successfully uploaded an image using the following code:
views.py
from django.conf.urls.defaults import *
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts ...
1
vote
2answers
773 views
Django image file uploads
I just can't figure out how to upload images in django. I've read dozens of blog posts and questions here, but most of them just confuse me more.
Here is what I have so far. This is my model:
class ...
0
votes
1answer
423 views
Uploaded django image ends up with wrong filename
I don't know if this is expected behavior or not, but if I create a project with a single model with an ImageField field and upload a photo with the filename "árvórés", the uploaded file is saved with ...