{% extends "base.html" %} {% block title %}AADC Monitoring{% endblock %} {% block content %}
| Design | Current Score | Baseline | Drift | Alert | Score History | Actions |
|---|---|---|---|---|---|---|
| {{ d.design_name }} | {% if d.current_score is not none %} {{ d.current_score }}% {% else %} — {% endif %} | {% if d.baseline_score is not none %}{{ d.baseline_score }}%{% else %}—{% endif %} | {% if d.baseline_score is not none and d.current_score is not none %} {{ '+' if d.drift > 0 else '' }}{{ d.drift }}pts {% else %} — {% endif %} | {{ d.alert_level }} |
{% if d.history %}
{% for h in d.history %}
{% set ht = (h.score / 100 * 24)|round(0)|int %}
{% endfor %}
{% else %}
no history
{% endif %}
|