{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %} {% if dashboard_cards %}
{% for card in dashboard_cards %}
{{ card.value }}
{{ card.label }}
{% if card.icon_img %} {% else %} {% endif %}
{% endfor %}
{% endif %} {% if dashboard_charts %}
{% for chart in dashboard_charts %}
{{ chart.title }}
{% endfor %}
{% endif %}
{% if dashboard_table %}
{{ dashboard_table.title or 'Recent Items' }}
{% if dashboard_table.link %} {{ dashboard_table.link_text or 'View All' }} {% endif %}
{% for col in dashboard_table.columns %} {% endfor %} {% for item in dashboard_table.rows %} {% for col in dashboard_table.columns %} {% endfor %} {% endfor %}
{{ col.label }}
{% 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 %}
{% endif %} {% if dashboard_stats or dashboard_actions %}
{% if dashboard_stats %}
{{ dashboard_stats.title or 'Status Breakdown' }}
{% if dashboard_stats.status_breakdown %} {% for status_name, count in dashboard_stats.status_breakdown.items() %}
{% with status=status_name %} {% include "partials/status_cell.html" %} {% endwith %} {{ count }}
{% endfor %} {% endif %} {% if dashboard_stats.counters %} {% if dashboard_stats.status_breakdown %}
{% endif %}
{% if dashboard_stats.counters_title %}
{{ dashboard_stats.counters_title }}
{% endif %} {% for counter in dashboard_stats.counters %}
{{ counter.label }} {{ counter.value }}
{% endfor %}
{% endif %}
{% endif %} {% if dashboard_actions %}
Quick Actions
{% for action in dashboard_actions %} {% if action.icon %} {% endif %}{{ action.label }} {% endfor %}
{% endif %}
{% endif %}
{% endblock %} {% block extra_js %} {% if dashboard_charts %} {% endif %} {% endblock %}