{% extends 'layouts/base.html' %} {% block title %} {{cloudName}} {% endblock title %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
{% if session['accesstype'] == "admin" %} {% endif %}

Account Details -

{% for customer in datas %} {% endfor %}
Cloud Name Machine Status Alert Last Updated On Last Updated Status
{{customer['CloudName']}} {{customer['CloudName']}} {{colorsss[customer['CloudName']] | capitalize_first_letter}} {% set machineType = cloudname_to_type.get(customer['CloudName'])%} {% if machineType == "prod" %} Production {% else %} Testing/Poc/Demo {% endif %} {% set cloud_owner = cloudname_to_owner.get(customer['CloudName'])%} {{ cloud_owner }} {% set cloud_ownerDate = cloudname_to_date.get(customer['CloudName'])%} {% if cloud_ownerDate is not none %} {{cloud_ownerDate | format_date}} {% else %} {{formatted_time}} {% endif %}
{% include "includes/footer.html" %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}