{% load i18n %} {# One tray's diff card, shared by the Pending Work tab and the apply confirmation. Pass show_plan=True to add the per-pair plan column (Pending Work aggregates several plans). The unassigned bucket (tray.is_unassigned) renders as a warning, not a normal tray. #}
| {% trans "Action" %} | {% trans "Fiber A" %} | {% trans "Fiber B" %} | {% if show_plan %}{% trans "Plan" %} | {% endif %}|
|---|---|---|---|---|
| {% trans "Add" %} | {{ pair.name_a }} | ↔ | {{ pair.name_b }} | {% if show_plan %}{{ pair.plan_name }} | {% endif %}
| {% trans "Remove" %} | {{ pair.name_a }} | ↔ | {{ pair.name_b }} | {% if show_plan %}{{ pair.plan_name }} | {% endif %}
| {% trans "Keep" %} | {{ pair.name_a }} | ↔ | {{ pair.name_b }} | {% if show_plan %}{{ pair.plan_name }} | {% endif %}