I would like to save an image with specific name depending on other model fields, specifically, many-to-many field.The problem occurs when I try to access the tags post_save(or son save()) which gives me None tags.
def path_to_upload(instance, filename):
ext = filename.split('.')[-1]
if instance.category:
upload_to = 'images/' + instance.category.category_dir
filename = 'Meme-{}-{}.{}'.format(instance.category.title, uuid4().hex, ext)
else:
upload_to = 'images/uncategorized/'
filename = 'Meme-{}-{}.{}'.format('uncategorized', uuid4().hex, ext)
return os.path.join(upload_to, filename)
class Meme(models.Model):
title = models.CharField(max_length=1024, default='')
category = models.ForeignKey(Category, null=True, on_delete=models.PROTECT)
tags = TaggableManager()
image = models.ImageField(upload_to=path_to_upload, default='')
image_thumbnail = ImageSpecField(source='image', processors=[ResizeToFill(350, 200)], format='JPEG', options={'quality': 50})
slug = models.SlugField(max_length=355, blank=True, default='')
def save_meme(sender, instance, **kwargs):
print(instance.tags.all())
post_save.connect(save_meme, sender=Meme)
on print it gives me empty QuerySet