summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/containers/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/containers/index.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/containers/index.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/containers/index.html b/horizon/horizon/dashboards/nova/templates/nova/containers/index.html
new file mode 100644
index 00000000..156f4817
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/containers/index.html
@@ -0,0 +1,19 @@
+{% extends 'nova/base.html' %}
+{%load i18n%}
+
+{% block sidebar %}
+ {% with current_sidebar="containers" %}
+ {{block.super}}
+ {% endwith %}
+{% endblock %}
+
+{% block page_header %}
+ {% url horizon:nova:images:index as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "horizon/common/_page_header.html" with title=_("Containers") refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
+
+{% block dash_main %}
+ {% include 'nova/containers/_list.html' %}
+ <a class="action_link large-rounded" href="{% url horizon:nova:containers:create %}">{% trans "Create New Container"%} &gt;&gt;</a>
+{% endblock %}