Back to site

New

{% paginate products from products.all by "5" order:'newest' %}

{% for product in products %}

{{ product.name }}

{% if product.description != blank %}

{{ product.description | paragraphs }}

{% endif %}

{{ product.default_price | money_with_sign }}{% if product.on_sale %} - On Sale{% endif %}

{% endfor %}

{% endpaginate %}