mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-28 20:32:07 +01:00
32 lines
941 B
HTML
32 lines
941 B
HTML
{% extends "ui/panels/_base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block panel_content %}
|
|
<table class="table table-hover attr-table">
|
|
<thead>
|
|
<tr class="border-bottom">
|
|
<th>{% trans "Device" %}</th>
|
|
<th>{% trans "Position" %}</th>
|
|
<th>{% trans "Master" %}</th>
|
|
<th>{% trans "Priority" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for vc_member in vc_members %}
|
|
<tr{% if vc_member == object %} class="table-primary"{% endif %}>
|
|
<td>{{ vc_member|linkify }}</td>
|
|
<td>{% badge vc_member.vc_position show_empty=True %}</td>
|
|
<td>
|
|
{% if virtual_chassis.master == vc_member %}
|
|
{% checkmark True %}
|
|
{% else %}
|
|
{{ ''|placeholder }}
|
|
{% endif %}
|
|
</td>
|
|
<td>{{ vc_member.vc_priority|placeholder }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock panel_content %}
|