Conditionally include vlan_translation_table in interface.html and vminterface.html

This commit is contained in:
Brian Tiemann 2024-10-28 15:11:16 -04:00
parent 79fbf64f86
commit d9dde5c4f4
3 changed files with 14 additions and 10 deletions

View File

@ -359,11 +359,13 @@
{% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %} {% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
</div> </div>
</div> </div>
<div class="row mb-3"> {% if object.vlan_translation_policy %}
<div class="col col-md-12"> <div class="row mb-3">
{% include 'inc/panel_table.html' with table=vlan_translation_table heading="VLAN Translation" %} <div class="col col-md-12">
{% include 'inc/panel_table.html' with table=vlan_translation_table heading="VLAN Translation" %}
</div>
</div> </div>
</div> {% endif %}
{% if object.is_bridge %} {% if object.is_bridge %}
<div class="row mb-3"> <div class="row mb-3">
<div class="col col-md-12"> <div class="col col-md-12">

View File

@ -16,11 +16,11 @@
</tr> </tr>
<tr> <tr>
<th scope="row">{% trans "Local VID" %}</th> <th scope="row">{% trans "Local VID" %}</th>
<td>{{ object.local_vid|placeholder }}</td> <td>{{ object.local_vid }}</td>
</tr> </tr>
<tr> <tr>
<th scope="row">{% trans "Remote VID" %}</th> <th scope="row">{% trans "Remote VID" %}</th>
<td>{{ object.remote_vid|placeholder }}</td> <td>{{ object.remote_vid }}</td>
</tr> </tr>
</table> </table>
</div> </div>

View File

@ -104,11 +104,13 @@
{% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %} {% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
</div> </div>
</div> </div>
<div class="row mb-3"> {% if object.vlan_translation_policy %}
<div class="col col-md-12"> <div class="row mb-3">
{% include 'inc/panel_table.html' with table=vlan_translation_table heading="VLAN Translation" %} <div class="col col-md-12">
{% include 'inc/panel_table.html' with table=vlan_translation_table heading="VLAN Translation" %}
</div>
</div> </div>
</div> {% endif %}
<div class="row mb-3"> <div class="row mb-3">
<div class="col col-md-12"> <div class="col col-md-12">
{% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %} {% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}