I\'ve got the following model in my Django app:
class Image(models.Model): image = models.ImageField( upload_to=\'images/\', height_fiel
You need {{ image.image.url }} & {{ image.image.path }}, while {{ image }} - just an Image object
{{ image.image.url }}
{{ image.image.path }}
{{ image }}