summaryrefslogtreecommitdiff
path: root/tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html
diff options
context:
space:
mode:
Diffstat (limited to 'tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html')
-rw-r--r--tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html b/tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html
deleted file mode 100644
index 52b3c275..00000000
--- a/tuskar_ui/infrastructure/templates/infrastructure/overview/deployment_plan.html
+++ /dev/null
@@ -1,51 +0,0 @@
-{% extends "infrastructure/overview/deployment_base.html" %}
-
-{% load i18n %}
-{% load url from future%}
-{% load horizon %}
-
-{% block deployment-icon %}
-{% if plan_invalid %}fa-exclamation-circle{% else %}fa-check-circle{% endif %}
-{% endblock %}
-
-{% block deployment-title %}
- {% trans "Deployment Checklist" %}
-{% endblock %}
-
-{% block deployment-info %}
-<a data-toggle="collapse" href="#messages" aria-expanded="false" aria-controls="messages" id="collapse-steps">{{ steps_message }}</a>
-<ul class="fa-ul collapse" id="messages">
- {% for message in plan_messages %}
- <li style="margin-left:{{ message.indent|default:0 }}em">
- <i class="fa-li fa {{ message.classes }}" ></i>
- {{ message.text }}
- </li>
- {% endfor %}
-</ul>
-{% endblock %}
-
-{% block deployment-buttons %}
-<a href="{% url 'horizon:infrastructure:overview:deploy_confirmation' %}"
-class="btn btn-primary ajax-modal btn-default {% if plan_invalid %}disabled{% endif %}">
-<i class="fa fa-lg fa-rocket"></i> {% trans "Verify and Deploy" %}
-</a>
-{% endblock %}
-
-{% block templates %}
-<script type="text/html" id="title-template">{% spaceless %}{% jstemplate %}
-<h4>
-[[#validating]]{% trans "Validating the Plan..." %}[[/validating]]
-[[^validating]]{% trans "Deployment Checklist" %}[[/validating]]
-</h4>
-{% endjstemplate %}{% endspaceless %}</script>
-<script type="text/html" id="message-template">{% spaceless %}{% jstemplate %}
-<ul class="fa-ul collapse" id="messages">
-[[#messages]]
- <li style="margin-left: [[indent]]em">
- <i class="fa-li fa [[classes]]"></i>
- [[text]]
- </li>
-[[/messages]]
-</ul>
-{% endjstemplate %}{% endspaceless %}</script>
-{% endblock %}