-
- {% include "_messages.html" %}
+{% block page_header %}
+ {% include "_page_header.html" with title="Create Flavor" %}
+{% endblock page_header %}
- System Panel: Flavors
-— Create, Edit and Delete Flavors.
-
+{% block syspanel_main %}
{% endblock %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_flavors.html b/openstack-dashboard/dashboard/templates/syspanel_flavors.html
index 4c91d14be..b86a7d07f 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_flavors.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_flavors.html
@@ -6,8 +6,11 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Flavors{% endblock %}
-{% block refresh_link %}{% url syspanel_flavors %}{% endblock refresh_link %}
+{% block page_header %}
+ {% url syspanel_flavors as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "_page_header.html" with title="Flavors" refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
{% block syspanel_main %}
{% include "_syspanel_flavor_list.html" %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_image_update.html b/openstack-dashboard/dashboard/templates/syspanel_image_update.html
index c0e238293..defc03673 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_image_update.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_image_update.html
@@ -6,8 +6,9 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Update Image{% endblock %}
-{% block refresh_link %}{% url syspanel_images %}{% endblock refresh_link %}
+{% block page_header %}
+ {% include "_page_header.html" with title="Update Image" %}
+{% endblock page_header %}
{% block syspanel_main %}
-
-
-
-
-
Create Flavor
--
@@ -34,14 +27,11 @@
{{available_disk_tb}}TBAvailable
Description:
From here you can define the sizing of a new flavor.
diff --git a/openstack-dashboard/dashboard/templates/syspanel_images.html b/openstack-dashboard/dashboard/templates/syspanel_images.html
index b72b60941..258d5ea0b 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_images.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_images.html
@@ -6,8 +6,11 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Images{% endblock %}
-{% block refresh_link %}{% url syspanel_images %}{% endblock refresh_link %}
+{% block page_header %}
+ {% url syspanel_images as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "_page_header.html" with title="Images" refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
{% block syspanel_main %}
{% include "_syspanel_image_list.html" %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_instances.html b/openstack-dashboard/dashboard/templates/syspanel_instances.html
index 5cd6604d5..d8ca3ed75 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_instances.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_instances.html
@@ -6,7 +6,11 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Instances{% endblock %}
+{% block page_header %}
+ {% url syspanel_instances as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "_page_header.html" with title="Instances" refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
{% block syspanel_main %}
{% if instances %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_quotas.html b/openstack-dashboard/dashboard/templates/syspanel_quotas.html
index fb729c3d3..fc8ece637 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_quotas.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_quotas.html
@@ -6,8 +6,11 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Default Quotas{% endblock %}
-{% block refresh_link %}{% url syspanel_quotas %}{% endblock %}
+{% block page_header %}
+ {% url syspanel_quotas as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "_page_header.html" with title="Default Quotas" refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
{% block syspanel_main %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_services.html b/openstack-dashboard/dashboard/templates/syspanel_services.html
index 5fdbea0ac..dc193067b 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_services.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_services.html
@@ -6,7 +6,11 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Services{% endblock %}
+{% block page_header %}
+ {% url syspanel_services as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "_page_header.html" with title="Services" refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
{% block syspanel_main %}
{% include "_syspanel_service_list.html" %}
diff --git a/openstack-dashboard/dashboard/templates/syspanel_tenant_create.html b/openstack-dashboard/dashboard/templates/syspanel_tenant_create.html
index b3d61e1dd..3be713132 100644
--- a/openstack-dashboard/dashboard/templates/syspanel_tenant_create.html
+++ b/openstack-dashboard/dashboard/templates/syspanel_tenant_create.html
@@ -6,7 +6,9 @@
{% endwith %}
{% endblock %}
-{% block page_title %}Create Tenant{% endblock %}
+{% block page_header %}
+ {% include "_page_header.html" with title="Create Tenant" %}
+{% endblock page_header %}
{% block syspanel_main %}