Advertisement
Roman_Sarnov

Untitled

Jun 16th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. products = Product.objects.filter(available=True).prefetch_related('images')
  2.  
  3. class ProductImage(models.Model):
  4. image = models.ImageField(upload_to='products/%Y/%m/%d/', blank=True)
  5. product = models.ForeignKey(Product, related_name='images', on_delete=models.CASCADE)
  6.  
  7. {{product.images.first.image.url}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement