{% comment %} Public catalogue grid (AC 1.6:#1) — deliberately minimal/self-contained for this pass, not themed against ThemeSettings colors/fonts yet (out of scope, noted in Dev Notes as a follow-up). Every product link goes through {% url %}, never product.get_absolute_url() — that reverses Oscar's own "catalogue:detail", a URL name Comptoir never mounts (AD-1). {% endcomment %} Boutique

Boutique

{% if products %}
{% for product in products %} {% with stockrecord=product.stockrecords.first %} {% with image=product.images.first %} {% if image %} {{ product.title }} {% endif %} {% endwith %}

{{ product.title }}

{% if stockrecord %}

{{ stockrecord.price }} €

{% endif %}
{% endwith %} {% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %}Précédent{% endif %} Page {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %}Suivant{% endif %}
{% endif %} {% else %}

Aucun produit publié pour le moment.

{% endif %}