{% extends "base.html" %}{% block content %}
{% 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.
Underlying series: value metric · rate metric
{% if trend.incidents %}No history is available yet for this trend and entity.
{% endif %}{% endblock %}