Found {{products.paginator.count}} products.
{% for product in products %}
{% for image in product.images.all %}

{% endfor %}
{{product.status}}
{% with product.variants.all as variants %}
Count: {{product.filtered_variants_count|default:product.variants_count}}
{% if variants %}
{% for variant in variants|sort_by_attr:'price' %}
- {{variant.title}} {{variant.price|money}}
{% endfor %}
{% with minvp=product.filtered_min_variant_price|default:product.min_variant_price maxvp=product.filtered_max_variant_price|default:product.max_variant_price %}
{% if minvp == maxvp %}
{{minvp|money}}
{% else %}
{{minvp|money}} - {{maxvp|money}}
{% endif %}
{% endwith %}
{% else %}
{{product.price|money}}
{% endif %}
{% endwith %}
{% endfor %}
{% include "catalog/includes/pagination.html" %}