From 46d437acb9222b8d699315249540d0db9713b872 Mon Sep 17 00:00:00 2001 From: Radomir Dopieralski Date: Tue, 24 Feb 2015 15:14:50 +0100 Subject: [PATCH] Siwtch the 'validation' and 'roles' columns Change-Id: Icd592e7579c67d586c6cc642ced581453c5caaa7 --- .../tuskar_boxes/overview/index.html | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tuskar_boxes/templates/tuskar_boxes/overview/index.html b/tuskar_boxes/templates/tuskar_boxes/overview/index.html index 2cf0300..85172d5 100644 --- a/tuskar_boxes/templates/tuskar_boxes/overview/index.html +++ b/tuskar_boxes/templates/tuskar_boxes/overview/index.html @@ -26,6 +26,17 @@ {% block main %}
+
+ {% if stack %} + {% if stack.is_deployed and stack.is_initialized %} + {% include "tuskar_boxes/overview/role_nodes_live.html" %} + {% else %} + {% include "tuskar_boxes/overview/role_nodes_status.html" %} + {% endif %} + {% else %} + {% include "tuskar_boxes/overview/role_nodes_edit.html" %} + {% endif %} +
{% if stack %} {% if stack.is_deleting or stack.is_deploying or stack.is_updating %} @@ -41,17 +52,6 @@ {% include "infrastructure/overview/deployment_plan.html" %} {% endif %}
-
- {% if stack %} - {% if stack.is_deployed and stack.is_initialized %} - {% include "tuskar_boxes/overview/role_nodes_live.html" %} - {% else %} - {% include "tuskar_boxes/overview/role_nodes_status.html" %} - {% endif %} - {% else %} - {% include "tuskar_boxes/overview/role_nodes_edit.html" %} - {% endif %} -