{% for port in network.ports %}
{{ port.id }} |
{{port.state}} |
{% if port.attachment %}
{% trans "Instance" %} |
{% trans "VIF Id" %} |
{{port.instance}} |
{{port.attachment.id}} |
{% else %}
--
{% endif %}
|
{% if port.attachment %}
- {% include "nova/networks/_detach_port.html" with form=detach_port_form %}
{% else %}
- {% trans "Attach" %}
{% endif %}
- {% include "nova/networks/_toggle_port.html" with form=toggle_port_form %}
- {% include "nova/networks/_delete_port.html" with form=delete_port_form %}
|
|
{% endfor %}