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 %}
Source:stackexchange.com