Tagged Questions

12
votes
1answer
4k views

Django Imagefield not working properly via ModelForm

I'm certain I'm doing something really obviously stupid, but I've been trying to figure it out for a few hours now and nothing is jumping out at me. I'm using a ModelForm so I can expose a few fields ...
4
votes
2answers
216 views

How to bind an image to an edit form in Django?

I have the following Model: class Listing(models.Model): name = models.CharField(max_length=50, verbose_name="Title") images = models.ManyToManyField('Image') , with the ManyToManyField ...
2
votes
1answer
240 views

Django Form and Image Upload on same page

I'm trying to figure out how to upload an image and get user input on a single form. My models: class Image(models.Model): artist = models.ForeignKey('Artist') image = ...
1
vote
1answer
46 views

Django ModelForm not handling files correctly

I have a very basic model with an ImageField on it, and a ModelForm for uploading that image. My form is failing, saying that my image is not valid, but if I instantiate the model's image directly ...
1
vote
2answers
748 views

Django admin: Add a “remove file” field for Image- or FileFields

I was hunting around the Internet for a way to easily allow users to blank out imagefield/filefields they have set in the admin. I found this: http://www.djangosnippets.org/snippets/894/. What was ...
0
votes
1answer
34 views

Django Forms uploading image - form data works except for image

I'm trying to get uploading working with Django. I don't get an error when I try to upload it, and the new Item is saved, but there is no image. The other form data is all there. I've been googling ...
0
votes
0answers
38 views

Django form enctype append in view

Is there any way to append enctype=multipart/form-data to form in view? Reason is that i massive import documents from xml file, which contains link to image. In view I have such code post_data = ...
0
votes
0answers
96 views

django - data not validating after image field added to model form

I'm new to django and I've run into a bit of a problem. I just added am image field to a model form but when I try to upload an image using the form, it gives me the following error saying that the ...
0
votes
1answer
163 views

Getting username in ImageField upload_to path

I would like to include the username in my upload_to directory path for when a user uploads an image. Here is what I currently have -- #model class Avatar(models.Model): avatar = ...
0
votes
1answer
173 views

django - update images with ImageKit

On my project I'm using the ImageKit example provided at github: click here I would like to be able to update the picture files if a picture for a specific user already exists (like the avatar) and ...
0
votes
1answer
189 views

Django: Display existing image with an instantiated ModelForm, rather than a file input?

I have some images assigned to an ImageField on several saved model instances. I want to display a ModelForm based on the model of interest, only for the purpose of setting one foreign key on the ...
0
votes
4answers
188 views

Cannot validate a django form with images

I'm having a trouble making a form work. As I see it, everything is fine, but is_valid() always returns False (I had to check it in shell mode, since in the template it doesn't show any errors). Am I ...