Tagged Questions

2
votes
5answers
226 views

Django: When saving, how can you check if a field has changed?

In my model I have : class Alias(MyBaseModel): remote_image = models.URLField(max_length=500, null=True, help_text="A URL that is downloaded and cached for the image. Only used when the alias is …
0
votes
1answer
34 views

Optional ImageField (Django)

Hi all, I'm having a problem with an ImageField in one of my models. It is set to blank=True, null=True (it is optional.) When I loop through a list of objects and use object.thumbnail.url, I get …
0
votes
1answer
40 views

Create & return a default ImageFieldFile from inside a function

In my UserProfile model I would like to have a function which returns either the user's ImageFileField object or a default image if the user has not uploaded their own. For example: class …
0
votes
2answers
59 views

Django ImageField Override the File Collision Code

Hi, I would like to have 2 ImageFields in a Model. being the one where the user uploads an image being one where we have a copy of that image, but using the Same File. Note: I am simplfying the …
1
vote
2answers
248 views

Django: add image in an ImageField from image url

Hi, please excuse me for my ugly english ;-) Imagine this very simple model : class Photo(models.Model): image = models.ImageField('Label', upload_to='path/') I would like to create a Photo …
4
votes
2answers
855 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 …
0
votes
0answers
89 views

how can I change(update) an existing avatar to a new one using Django modelform?

Hi, I encounter a problem. In my user models there is an atrrbution: user.avatar = ImageField ('avatar', upload_to=AVATAR_TEMP_DIR, blank=True, null=True) then i use a modelform as an create user …