summaryrefslogtreecommitdiff
path: root/horizon/dashboards/nova/networks/templates/networks/_network_ips.html
blob: a80e74795b07f8617512f70c8c9cc270b1af69e7 (plain)
1
2
3
4
5
6
7
8
9
10
{% for subnet in subnets %}
<ul>
  <li>
    {% if subnet.name|length > 0 %}
    <b>{{ subnet.name }}</b>
    {% endif %}
    {{ subnet.cidr }}
  </li>
</ul>
{% endfor %}