{% extends "layouts/base.html" %} {% block title %} Deploys {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %}
{% include 'includes/navigation.html' %}

All Deploys

List of all deployments

{% for deploy in deploys %} {% if "aws" in deploy.stack_name %} {% endif %} {% if "azure" in deploy.stack_name %} {% endif %} {% if "gcp" in deploy.stack_name %} {% endif %} {% if "custom" in deploy.stack_name %} {% endif %} {% endfor %}
Id Stack Deploy Name| Stack | Branch Squad Environment Apply_time | Destroy_time Action Status
{{ deploy.id }}
{% if deploy.icon_path %} Icono {% else %} Icono {% endif %} {% if deploy.icon_path %} Icono {% else %} Icono {% endif %} {% if deploy.icon_path %} Icono {% else %} Icono {% endif %} {% if deploy.icon_path %} Icono {% else %} Icono {% endif %}
{{ deploy.name }}
stack : {{ deploy.stack_name }}
branch : {{deploy.stack_branch}}
Username: {{deploy.username}}
copy: tfvars:
{{ deploy.squad}}
{{ deploy.environment}}
Apply: {{ deploy.start_time }}
Destroy: {{ deploy.destroy_time }}
{{ deploy.action}}
{% if deploy.action == "Destroy"%} {% else %} {% endif %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}