[Answered ]-Cant get profile images to display with django

1👍

You use the .url of the .image field so:

{% for profile in profiles %}
    <li>
        <img src="{{ profile.image.url }}">
    </li>
{% endfor %}

Leave a comment