[Answered ]-Issues with display multiple images

2👍

Grab all the products int he view then loop over them in the template.

// View

products = Upload_files.objects.all()

// Template

{% for product in products %}
    <img src="/media/{{ product.image }}/" />
{% endfor %}

Leave a comment