summaryrefslogtreecommitdiff
path: root/horizon/dashboards/nova/networks/templates/networks/subnets/detail.html
diff options
context:
space:
mode:
authorAkihiro MOTOKI <motoki@da.jp.nec.com>2012-07-23 14:26:30 +0900
committerAkihiro MOTOKI <motoki@da.jp.nec.com>2012-08-13 02:54:42 +0900
commit05cf90049244ea0694d853f9c1e2aff14d753c9a (patch)
tree36feb6e467b5ca92d05df63cf03ad777c7db3777 /horizon/dashboards/nova/networks/templates/networks/subnets/detail.html
parentb0066309fd57c0d20f754d3ecea94b617235f40e (diff)
downloadtuskar-ui-05cf90049244ea0694d853f9c1e2aff14d753c9a.tar.gz
Initial support of Quantum V2.
Implementes blueprint quantum-horizon and blueprint readd-quantum-support. This commit also covers blueprint quantum-workflow-integration. - Added quantum API layer, - Added network/subnet/port CRUD operations, - Added 'Network' user panel, - Added 'Network' system panel, - Added 'Networking' tab in instance creation workflow. - Supported launching an instance with specified network(s) Change-Id: I7ad608e17cb6fb4f0de02721888e96a68cf926e8
Diffstat (limited to 'horizon/dashboards/nova/networks/templates/networks/subnets/detail.html')
-rw-r--r--horizon/dashboards/nova/networks/templates/networks/subnets/detail.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/horizon/dashboards/nova/networks/templates/networks/subnets/detail.html b/horizon/dashboards/nova/networks/templates/networks/subnets/detail.html
new file mode 100644
index 00000000..c4e35bd0
--- /dev/null
+++ b/horizon/dashboards/nova/networks/templates/networks/subnets/detail.html
@@ -0,0 +1,15 @@
+{% extends 'base.html' %}
+{% load i18n %}
+{% block title %}{% trans "Subnet Detail"%}{% endblock %}
+
+{% block page_header %}
+ {% include "horizon/common/_page_header.html" with title=_("Subnet Detail") %}
+{% endblock page_header %}
+
+{% block main %}
+<div id="row-fluid">
+ <div class="span12">
+ {{ tab_group.render }}
+ </div>
+</div>
+{% endblock %}