{% extends 'infrastructure/base.html' %} {% load i18n %} {% load url from future %} {% block css %} {{block.super}} {% load compress %} {% compress css %} {% endcompress %} {% endblock %} {% block js %} {{ block.super }} {% endblock %} {% block title %}{% trans 'My OpenStack Deployment' %}{% endblock %} {% block page_header %} {% include 'horizon/common/_items_count_domain_page_header.html' with title=_('My OpenStack Deployment') %} {% endblock page_header %} {% 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 %} {% include "infrastructure/overview/deployment_progress.html" %} {% elif stack.is_delete_failed or stack.is_failed %} {% include "infrastructure/overview/deployment_failed.html" %} {% elif stack.is_deployed and not stack.is_initialized %} {% include "infrastructure/overview/deployment_initialize.html" %} {% else %} {% include "infrastructure/overview/deployment_live.html" %} {% endif %} {% else %} {% include "infrastructure/overview/deployment_plan.html" %} {% endif %}
{% if stack and stack.is_deployed and stack.is_initialized %}

Nodes Distribution

{% for role in roles %} {% if role.distribution %} {{ role.name|capfirst }}: {{ role.distribution }}% {% endif %} {% endfor %}
{% include "tuskar_boxes/overview/_node_info.html" with nodes=nodes %} {% endif %}
{% endblock %}