{% load i18n gadjo %}
{% block cell-content %}
{% block cell-header %}
{% if card_objects or not cell.hide_if_empty %}
{% if title %}
{{ title|force_escape }}
{% endif %}
{% include "combo/asset_picture_fragment.html" %}
{% endif %}
{% endblock %}
{% if card_objects or not cell.hide_if_empty %}
{% include "combo/wcs/cards-filters.html" %}
{% endif %}
{% if card_objects %}
{% with cell.get_custom_schema as custom_schema %}
{% for card in card_objects %}
{% spaceless %}
{% if custom_schema %}
{% include "combo/wcs/cards-field.html" with item=custom_schema.cells.0 ul_display=True %}
{% else %}
{{ card.text }}
{% endif %}
{% endspaceless %}
{% endfor %}
{% endwith %}
{% elif not cell.hide_if_empty %}
{% trans "There are no cards." %}
{% endif %}
{% if card_objects or not cell.hide_if_empty %}
{% include "combo/wcs/cards-pagination.html" %}
{% endif %}
{% endblock %}