{% extends "base.html" %} {% block title %}Assign {{ battery.label }} — Battery Tracker{% endblock %} {% block content %}

Assign {{ battery.label }}

Brand: {{ battery.brand }}

{% if devices %}
{% for device in devices %} {% set full = device.installed_count() >= device.battery_slots %} {% set mix = device.installed_brands() and battery.brand not in device.installed_brands() %}
{% if mix and not full %}

⚠ Already has {{ device.installed_brands()|join(', ') }} — mixing brands not recommended.

{% endif %}
{% endfor %}
Cancel
{% else %}

No devices exist yet. Add a device first.

{% endif %}
{% endblock %}