Tagged Questions

11
votes
5answers
4k 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 ...
1
vote
2answers
33 views

Django admin - importing images to the text

I've pasted below small part of my models class. It's a class for publishing entries (articles, blog posts etc.). On most websites news images are pasted below the text of message. Is it possible to ...