You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
337 B

{% extends 'base.html' %}
{% load static %}
{% block content %}
{% if products_images.count > 0 %}
<div>
{% for product_image in products_images %}
{% include 'landing/product_item.html' %}
{% endfor %}
</div>
{% else %}
<li>None to show!</li>
{% endif %}
{% endblock %}