{% extends "navfoot.html" %} {% block content %} {% load static %}

Products in {{ category.name }}

{{ category.description }}

{% for product in products %}
{% if product.image %} {{ product.name }} {% endif %}
{{ product.name }}

{{ product.description|slice:":100" }}{% if product.description|length > 100 %}...{% endif %}

Voir plus de détails
{% empty %}

No products available in this category.

{% endfor %}
Retour à les catégories {% endblock %}