{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Network Topology" %}{% endblock %} {% block main %} {% include "project/network_topology/client_side/_balloon_container.html" %} {% include "project/network_topology/client_side/_balloon_device.html" %} {% include "project/network_topology/client_side/_balloon_port.html" %} {% include "project/network_topology/client_side/_balloon_net.html" %} {% include "project/network_topology/client_side/_balloon_instance.html" %}
{% blocktrans %} Resize the canvas by scrolling up/down with your mouse/trackpad on the topology. Pan around the canvas by clicking and dragging the space behind the topology. {% endblocktrans %}
{% if launch_instance_allowed %} {% if show_ng_launch %} {% url 'horizon:project:network_topology:index' as networkUrl %} {% if instance_quota_exceeded %}{% trans "Launch Instance (Quota exceeded)"%}{% else %}{% trans "Launch Instance"%}{% endif %} {% endif %} {% if show_legacy_launch %} {% if instance_quota_exceeded %}{% trans "Launch Instance (Quota exceeded)"%}{% else %}{% trans "Launch Instance"%}{% endif %} {% endif %} {% endif %} {% if create_network_allowed %} {% if network_quota_exceeded %}{% trans "Create Network (Quota exceeded)"%}{% else %}{% trans "Create Network"%}{% endif %} {% endif %} {% if create_router_allowed %} {% if router_quota_exceeded %}{% trans "Create Router (Quota exceeded)"%}{% else %}{% trans "Create Router"%}{% endif %} {% endif %}
{% blocktrans %}There are no networks, routers, or connected instances to display.{% endblocktrans %}
{% endblock %}