I am currently using sorl-thumbnail and have a model.
class Entry(models.Model):
image = ImageWithThumbnailsField(upload_to='uploads/', null=False, blank=True,
thumbnail={
'size':(150,150),
'options':{'crop':'smart'}
},
generate_on_save=True
)
This model creates 'filename_jpeg_150x150x_crop-smart_q85.jpg' thumbnail in 'uploads' folder and I am trying to access it from my view functions. I'm wondering if there is a simple way to find out the thumbnail's name and path.
Thank you.