{% extends "base.html" %} {% block title %} {{ title }} {% endblock %} {% block extra-css %} {% load staticfiles %} {% endblock %} {% block titulo %}
{% endblock %} {% block conteudo1 %}

Id: {{ vlan.vlanid }}

Nome: {{ vlan.name }}

{% if vlan.comments %}

Obs: {{ vlan.comments }}

{% endif %}



   Redes


{% if networks %} {% for n in networks %} {% endfor %}
Rede
{{ n.name }}
{% else %}
{% endif %}



   Portas de switch


{% if swports %} {% for port in swports %} {% endfor %}
Porta Switch Equipamento Vlans Obs
{{ port.num }} {% if port.vlans.all.count > 1 %} (Trunk) {% endif %} {{ port.switch }} {{ port.host }} {% if port.vlans.all %}
    {% for v in port.vlans.all %}
  • {{ v }}
  • {% endfor %}

{% endif %}
{{ port.obs }}
{% else %}
{% endif %}
{% endblock %} {% block extra-js %} {% load staticfiles %} {% endblock %}