{% extends "base-fluid.html" %} {% from "_helpers.html" import is_active, link_to_network, link_to_scope %} {% block title %}Networks{% endblock %} {% block main %} {% set path = request.path %}
{% block networks_main %} {% for network in networks %} {% endfor %}
Vlan name Vlan id Description Address First IP Last IP Gateway Network scope Domain Admin only Sensitive
{{ link_to_network(network) }} {{ network.vlan_id }} {{ network.description | safe }} {{ network.address }} {{ network.first_ip }} {{ network.last_ip }} {{ network.gateway }} {{ link_to_scope(network.scope) }} {{ network.domain }} {{ network.admin_only }} {{ network.sensitive }}
{%- endblock %} {%- endblock %} {% block csentry_scripts %} {% endblock %}