{% extends "layout.html" %} {% block title %}TrueNAS Burn-In — Dashboard{% endblock %} {% block content %} {% include "components/modal_start.html" %} {% include "components/modal_batch.html" %} {% include "components/modal_unlock.html" %}
{{ drives | length }} Drives
0 Running
0 Failed
0 Passed
0 Idle
{%- set st = poller.system_temps if (poller and poller.system_temps) else {} %} {%- if st.get('cpu_c') is not none or st.get('pch_c') is not none %}
{%- if st.get('cpu_c') is not none %}
{{ st.get('cpu_c') }}° CPU
{%- endif %} {%- if st.get('pch_c') is not none %}
{{ st.get('pch_c') }}° PCH
{%- endif %} {%- endif %} {%- set tp = poller.thermal_pressure if poller else 'ok' %}
{%- if tp == 'warn' %}WARM{%- elif tp == 'crit' %}HOT{%- else %}OK{%- endif %} Thermal
{% include "components/drives_table.html" %}
{% endblock %}