{% load assets i18n %} {% block cell-content %} {% block cell-header %} {% if title %}

{{ title }}

{% endif %} {% include "combo/asset_picture_fragment.html" %} {% endblock %} {% if card %}
{% spaceless %} {% if cell.custom_schema %}
{% for item in cell.custom_schema.cells %}
{% for field in schema.fields %} {% if field.varname == item.varname %} {% with card.fields|get:item.varname as value %} {% if item.display_mode == "title" %}

{% include "combo/wcs/card-field-value.html" %}

{% endif %} {% if item.display_mode == "label" or item.display_mode == "label-and-value" %}

{{ field.label }}

{% endif %} {% if item.display_mode == "value" or item.display_mode == "label-and-value" %}

{% include "combo/wcs/card-field-value.html" %}

{% endif %} {% endwith %} {% endif %} {% endfor%}
{% endfor%}
{% else %} {% for field in schema.fields %} {% if 'varname' in field and field.varname and field.type != 'file' %} {% with card.fields|get:field.varname as value %}

{{ field.label }} {% include "combo/wcs/card-field-value.html" %}

{% endwith %} {% endif %} {% endfor %} {% endif %} {% endspaceless %}
{% else %}

{% trans 'Unknown Card' %}

{% endif %} {% endblock %}