Код: Выделить всё
class Recipe(models.Model):
title = models.CharField(max_length=200)
description = models.TextField(null=True, blank=True)
photo = models.ImageField(upload_to="photos/%Y/%m/%d/", default=None, verbose_name="Фото")
ingredients = models.TextField(null=True, blank=True)
directions = models.TextField(null=True, blank=True)
def __str__(self):
return self.title
На сайте я вижу img icom вместо полного изображения
Подробнее здесь: https://stackoverflow.com/questions/767 ... nd-a-photo
Мобильная версия