[Answer]-How to display foreignkey image in django

1👍

You should follow relationship backward from Item to ImageOfItem:

{% for img in item.imageofitem_set.all %}
    <img src="{{ img.picture.url }}"><br>
{% endfor %}

Leave a comment