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

Battery Dashboard

{% set total = batteries|length %} {% set available = batteries|selectattr('status','eq','available')|list|length %} {% set installed = batteries|selectattr('status','eq','installed')|list|length %} {% set retired = batteries|selectattr('status','eq','retired')|list|length %}
{{ total }}
Total
{{ available }}
Available
{{ installed }}
Installed
{{ retired }}
Retired
{% for b in batteries %} {% else %} {% endfor %}
Label Brand Size Status Assigned To Actions
{{ b.label }} {{ b.brand }} {{ b.size or '—' }} {{ b.status|capitalize }} {% if b.device %} {{ b.device.name }} {% if b.device.has_mixed_brands() %} ⚠ mixed {% endif %} {% else %} {% endif %} View {% if b.is_available() %} {% endif %} {% if b.is_installed() %} {% endif %} {% if not b.is_retired() %} {% endif %}
No batteries found. Add some.
{% endblock %}