{% extends "base.html" %} {% block title %}Devices — Battery Tracker{% endblock %} {% block content %}
| Name | Type | Size | Location | Slots | Installed | Brands | Actions |
|---|---|---|---|---|---|---|---|
| {{ d.name }} | {{ 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. | |||||||