1👍
✅
You use the .url
of the .image
field so:
{% for profile in profiles %}
<li>
<img src="{{ profile.image.url }}">
</li>
{% endfor %}
Source:stackexchange.com