summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/instances/templates/instances/_instance_ips.html
blob: 72ed59fe636443ae2ead7a84edc0eef8597d38f0 (plain)
1
2
3
4
5
6
7
8
9
10
{% for ip_group, addresses in instance.addresses.items %}
    {% if instance.addresses.items|length > 1 %}
    <h4>{{ ip_group }}</h4>
    {% endif %}
    <ul>
    {% for address in addresses %}
      <li>{{ address.addr }}</li>
    {% endfor %}
    </ul>
{% endfor %}