{% load i18n %} {% if cart.items.count == 0 %}
{% translate 'No hay nada en el carrito' %}
{% else %}{% for attribute_value in cart_item.variant.attribute_values.all %}{{ attribute_value }}{% if not forloop.last %}, {% endif %}{% endfor %}
{% endif %}