{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %} {% if dashboard_cards %}
| {{ col.label }} | {% endfor %}
|---|
{% if item is mapping %}
{% set value = item.get(col.key, '') %}
{% else %}
{% set value = item[col.key] %}
{% endif %}
{% if col.link %}
{% if item is mapping %}
{% set item_id = item.get('id', '') %}
{% else %}
{% set item_id = item.id %}
{% endif %}
{{ value or 'N/A' }}
{% elif col.status %}
{% with status=value %}
{% include "partials/status_cell.html" %}
{% endwith %}
{% elif col.code %}
{{ value or 'N/A' }}
{% else %}
{{ value or 'N/A' }}
{% endif %}
|
{% endfor %}