From a4ba880252b2bad72df3f16dd11fdf2206825335 Mon Sep 17 00:00:00 2001 From: Justin Choquette Date: Mon, 23 Oct 2023 16:24:13 -0400 Subject: Single Template Selection For Compatible Dashboards Change-Id: I0a795c2c49fdbe0427182a8789d622003997efcd Signed-off-by: Justin Choquette --- src/templates/base/workflow/design_a_pod.html | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/templates/base') diff --git a/src/templates/base/workflow/design_a_pod.html b/src/templates/base/workflow/design_a_pod.html index c23e5a8..4804792 100644 --- a/src/templates/base/workflow/design_a_pod.html +++ b/src/templates/base/workflow/design_a_pod.html @@ -7,8 +7,6 @@ {% endblock %} {% block content %} -{% if dashboard == 'laas' %} - @@ -18,13 +16,13 @@
- + - +
@@ -40,18 +38,24 @@

Add Resources*

-

Add up to 8 configurable resources to your pod, then use the navigation arrows to proceed to the next step.

+ {% if constraints.max_hosts != "null" %} +

Add up to {{constraints.max_hosts}} configurable resources to your pod, then use the navigation arrows to proceed to the next step.

+ {% else %} +

Select a resource bundle that you would like to configure. To change the selected resource bundle, remove all added resources.

+ {% endif %}
- 0 / 8 + {% if constraints.max_hosts != "null" %} + 0 / {{constraints.max_hosts}} + {% endif %}
- +

Add Networks*

Define networks to use in your pod. A network may be set as public or private.

@@ -238,8 +242,8 @@ -{% endif %} {% endblock %} -- cgit