{% extends "base.html" %} {% block title %}Devices — Battery Tracker{% endblock %} {% block content %}
| Name | Type | Size | Location | Slots | Installed | Brands | Actions |
|---|---|---|---|---|---|---|---|
|
{{ d.name }}
{% if d.parent %}
↳ {{ d.parent.name }} {% elif d.has_children() %} {{ d.children|length }} sub-component{{ 's' if d.children|length != 1 }} {% endif %} |
{{ d.device_type or '—' }} | {{ d.battery_size or '—' }} | {{ d.location or '—' }} | {{ d.battery_slots }} | {{ installed }} / {{ d.battery_slots }} {% if installed >= d.battery_slots %} Full {% endif %} | {% set brands = d.installed_brands() %} {% if brands %} {{ brands|join(', ') }} {% if d.has_mixed_brands() %} ⚠ mixed {% endif %} {% else %} — {% endif %} | View {% if installed > 0 %} {% endif %} |
| No devices yet. Add one. | |||||||