|
|
|
{% for l in i.host.list_ports %}
{% if l.ipv4 %}
{% autoescape off %}
{% display_portforward4 l %}
{% endautoescape %}
|
|
{{ l.private }}/{{ l.proto }}
|
{% trans "Remove" %}
|
{% endif %}
{% endfor %}
{% if i.host.ipv6 %}
|
|
|
{% for l in i.host.list_ports %}
{% if l.ipv6 %}
{% autoescape off %}
{% display_portforward6 l %}
{% endautoescape %}
|
|
{{ l.private }}/{{ l.proto }}
|
{% trans "Remove" %}
|
{% endif %}
{% endfor %}
{% else %}
{% trans "This VM doesn't have an IPv6 address!" %}
{% endif %}
{% include "dashboard/vm-detail/_network-port-add.html" %}