{% extends 'info/vlan/base.html' %}
{% block base_header_additional_head %}
{{ block.super }}
{% endblock %}
{% block vlandetails %}
{% comment %} Print vlan information {% endcomment %}
Vlan {{ vlan }}
Vlan |
{{ vlan.vlan|default_if_none:"N/A" }} |
Type |
{{ vlan.net_type|default_if_none:"" }} |
Organization |
{{ vlan.organization|default_if_none:"" }} |
Net Ident |
{{ vlan.net_ident|default_if_none:"" }} |
Description |
{{ vlan.description|default_if_none:"" }} |
{% comment %} Print gwportprefixes {% endcomment %}
{% comment %} Print prefixes {% endcomment %}
{% comment %} Graph with stacked ip-address count from all ipv4 and ipv6 prefixes {% endcomment %}
Vlan graphs
{% for graph_url in vlan.get_graph_urls %}
-
{% endfor %}
{% comment %} Graph for each prefix containing ip-addresses, mac-addresses and size of range {% endcomment %}
Prefix graphs
{% for prefix in prefixes %}
-
{% endfor %}
{% endblock %}