combo/combo/apps/wcs/templates/combo/wcs/card-field-as-title.html

12 lines
497 B
HTML

{% if item.field_content == "label" %}
<{{ title_tag }}>{{ field.label }}</{{ title_tag }}>
{% elif item.field_content == "value" %}
{% if value or item.empty_value == '@empty@' %}
<{{ title_tag }}>{% include "combo/wcs/card-field-value.html" with mode="inline" %}</{{ title_tag }}>
{% else %}
{% with item.empty_value as value %}
<{{ title_tag }}>{% include "combo/wcs/card-field-value.html" with mode="inline" %}</{{ title_tag }}>
{% endwith %}
{% endif %}
{% endif %}