{% extends '_base.html' %} {% load render_table from django_tables2 %} {% block title %}VLAN {{ vlan.display_name }}{% endblock %} {% block content %}
Site | {{ vlan.site }} |
Group | {% if vlan.group %} {{ vlan.group.name }} {% else %} None {% endif %} |
VLAN ID | {{ vlan.vid }} |
Name | {{ vlan.name }} |
Tenant | {% if vlan.tenant %} {{ vlan.tenant }} {% else %} None {% endif %} |
Status | {{ vlan.get_status_display }} |
Role | {% if vlan.role %} {{ vlan.role }} {% else %} None {% endif %} |
Description | {% if vlan.description %} {{ vlan.description }} {% else %} N/A {% endif %} |
Created | {{ vlan.created }} |
Last Updated | {{ vlan.last_updated }} |