{% load cabinet_tags %}
| {{ col.label }} {% if col.sortable %}{% endif %} | {% endfor %}
|---|
|
{# Bar column #}
{% if bar_key and col.key == bar_key and bar_max %}
{% with val=row|get_item:col.key %}
{{ val }}
{% endwith %}
{# Badge column #}
{% elif col.badge_key %}
{% with val=row|get_item:col.key flag=row|get_item:col.badge_key %}
{% if val and val != "—" %}
{% if flag %}
{{ val }}
{% else %}
{{ val }}
{% endif %}
{% else %}
—
{% endif %}
{% endwith %}
{# Icon + text column #}
{% elif col.icon_key %}
{% with val=row|get_item:col.key %}
{% if val and val != "—" %}
{{ val }}
{% else %}
—
{% endif %}
{% endwith %}
{# Default #}
{% else %}
{% with val=row|get_item:col.key %}
{% if val and val != "—" %}
{% if col.bold %}{{ val }}{% else %}{{ val }}{% endif %}
{% else %}
—
{% endif %}
{% endwith %}
{% endif %}
|
{% endfor %}
| {% with val=summary|get_item:col.key %} {% if val %}{{ val }}{% endif %} {% endwith %} | {% endfor %}