{% extends 'dcim/device/base.html' %} {% load render_table from django_tables2 %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% block head %} {% if use_svg %} {% else %} {% endif %} {% endblock %} {% block content %}
{% spaceless %} {% if use_svg %} {# ── SVG rendering path ── #} {# svg_panels is [(pos, svg_markup)] in ports_chassis order, pre-built in the view #} {% for panel_pos, svg_markup in svg_panels %}

Device {{ panel_pos }}

{% autoescape off %}{{ svg_markup }}{% endautoescape %}
{% endfor %} {% else %} {# ── CSS Grid rendering path (unchanged) ── #} {% for device, interfaces in ports_chassis.items %} Device {{device}} {% endfor %} {% endif %} {% endspaceless %}
{% if use_svg %} {# ── SVG interactivity script ── #} {% endif %}

Options

{% endblock %}