{% extends "base.html" %} {% block title %}Home — Battery Tracker{% endblock %} {% block content %}

Battery Tracker

Batteries

{{ total_batteries }}
Total
{{ avail_count }}
Available
{{ installed_count }}
Installed
{{ retired_count }}
Retired
{% if ha_enabled and needs_attention.low_pct %}
{{ needs_attention.low_pct|length }}
Low Battery
{% endif %}

Devices

{{ total_devices }}
Total
{{ full_devices }}
Full
{{ partial_devices }}
Partial
{{ empty_devices }}
Empty
{% if total_charges %}
Charged {{ total_charges }}× total {{ charges_last_year }}× in last year
{% endif %} {% set na_low_cap = needs_attention.low_capacity %} {% set na_low_pct = needs_attention.low_pct %} {% if na_low_cap or na_low_pct %}
Needs Attention  {{ (na_low_cap|length) + (na_low_pct|length) }}
{% if na_low_cap %}
Low Capacity (<80%)
{% for b in na_low_cap %}
{{ b.label }} — {{ (b.tested_capacity_mah / b.capacity_mah * 100)|int }}% of rated
{% endfor %}
{% endif %} {% if na_low_pct %}
Low Battery %
{% for b in na_low_pct %}
{{ b.label }} — {{ b.battery_percentage }}%
{% endfor %}
{% endif %}
{% endif %}
+ Add Battery View All Batteries View All Devices + Add Device
{% endblock %}