{% extends "layout.html" %} {% block content %}

Cost Analytics

Dashboard

{% if local_runtime_mode %} Last local dbt execution analysis {% else %} BigQuery spend analysis for {{ date_range.display }} {% endif %}

{% if not local_runtime_mode %} {% include "dashboard/_date_range_picker.html" %} {% endif %}
{% if has_data %} {# Cost Summary Section #}
{% include "dashboard/_cost_summary.html" %}
{# Main Content Grid #}
{# Trend Chart #} {% if selected_lens != 'storage' %}
{% include "dashboard/_trend_chart.html" %}
{% endif %} {# Cost Drivers #}
{% include "dashboard/_cost_drivers.html" %}
{# Opportunities Summary #}
{% include "dashboard/_opportunities_summary.html" %}
{# Usage Statistics #} {% if selected_lens != 'storage' %}
{% include "dashboard/_usage_stats.html" %}
{% endif %}
{% else %} {% include "dashboard/_empty_state.html" %} {% endif %}
{% if background_jobs_running %} {% endif %} {% endblock %}