25
সংরক্ষণ করার সময়, কোনও ক্ষেত্র পরিবর্তিত হয়েছে কিনা তা আপনি কীভাবে পরীক্ষা করতে পারেন?
আমার মডেলটিতে আমি: 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 made") image = models.ImageField(upload_to='alias', default='alias-default.png', help_text="An image representing the alias") def save(self, *args, **kw): if (not self.image or self.image.name == 'alias-default.png') and self.remote_image : try …