image = models.ImageField(upload_to='images/product/', blank=True)
<img src="{{ product.image.url }}" alt="{{ product.name }}" />
What if I store some of the images manually in Amazon S3 or DO Spaces and store the URL of the S3 bucket URL to some of the product rows directly in the database using phpMyAdmin or Admirer ?
Is there a way to determine which one is S3 and which one is from Opalstack's /media/ folder in views.py or template ?