summaryrefslogtreecommitdiff
path: root/horizon/dashboards/nova/networks/templates/networks/detail.html
blob: 3a8ac2d87d8989b185c40c9482a3db59b4025550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Network Detail"%}{% endblock %}

{% block page_header %}
  {% include "horizon/common/_page_header.html" with title=_("Network Detail: ")|add:network.name %}
{% endblock page_header %}

{% block main %}
  {% include "nova/networks/_detail_overview.html" %}
  <hr>
  <div id="subnets">
    {{ subnets_table.render }}
  </div>
  <div id="ports">
    {{ ports_table.render }}
  </div>
{% endblock %}