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