I'm using django-storages with amazon S3, and uploading image files with:
models.ImageField(upload_to="img=%Y-%m-%d", max_length=256, blank=True, null=True)
When the files are uploaded to S3 however, it has the original file name attached at the end. How do I get rid of that and replace it, with say some random hash instead?