[Answered ]-How can I display images from my Django DB?

1👍

As @Willem Van Onsem said in the comment, you can use <img src ="{{ object.image.url }}"> but, you need to check if image exists.

{% if object.image %}
    <img src ="{{ object.image.url }}">
{% else %}
    <img src ="<replace for default image url>">
{% endif %}

Leave a comment