I have a model that looks like this:
class ProjectImage(models.Model):
big_thumb = ThumbnailField(upload_to='profiles', size=(500, 500))
med_thumb = ThumbnailField(upload_to='profiles', size=(300, 300))
small_thumb = ThumbnailField(upload_to='profiles', size=(100, 100))
I associate ProjectImage with a Project as a TabularInline. In the admin, I'd like to be able to say if the medium and/or small thumbnails were not provided, use the same image as the big thumbnail. However, I'm having a hard time figuring out how to specify this behavior.