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

Historical trends

{% if trend %}{% set s=trend.summary %}{% set vp=trend.panels.value %}{% set rp=trend.panels.rate %}

{{ trend.profile.title }} — {{ entity }}

{% if s.current_value is not none %}Current {{ vp.metric }}: {{ '%.2f'|format(s.current_value) }} {{ vp.unit }}.{% endif %} {% if s.change_value is not none %}Net change {{ '%+.2f'|format(s.change_value) }} {{ vp.unit }} over {{ range_text }}.{% endif %} {% if s.current_rate is not none %}Latest signed rate {{ '%+.2f'|format(s.current_rate) }} {{ rp.unit }}.{% endif %} {% if s.confidence is not none %}Confidence {{ '%.0f'|format(s.confidence * 100) }}%.{% endif %} {% if s.projected_limit_ts is not none %}Projected limit {{ utc_iso(s.projected_limit_ts) }}.{% elif s.projection_reason %}{{ s.projection_reason }}.{% endif %}

Resolution: {{ trend.resolution }}; missing observations are shown as gaps.

Value

Signed rate

{% if trend.panels.confidence %}

Confidence

{% endif %}{% if trend.panels.projection %}

Qualified time remaining

{% endif %}

Underlying series: value metric · rate metric

{% if trend.incidents %}

Incident markers

{% endif %} {% else %}

No history is available yet for this trend and entity.

{% endif %}{% endblock %}