{% extends "base.html" %} {% block content %}
الكل {% for brand in brands %} {% endfor %}
{% if products %} {% for product in products %}
{% if product.image %}
{{ product.name }}
{% else %}
لا توجد صورة
{% endif %}
{{ product.name }}

{{ product.description[:100] }}{% if product.description|length > 100 %}...{% endif %}

العلامة التجارية: {{ product.brand.name }}
{% endfor %} {% else %}

لا توجد منتجات لعرضها.

{% endif %}
{% endblock %}