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

All Stacks

List all stacks for deploy

{% for stack in stacks %} {% if "aws" in stack.stack_name or "azure" in stack.stack_name or "gcp" in stack.stack_name or "custom" in stack.stack_name %}
{% if stack.icon_path %} Icono {% else %} Icono {% endif %}
{{stack.stack_name}}

{{stack.description}}

Repo: {{ stack.git_repo.split('/')[-1] | replace('.git', '') }}
Branch: {{ stack.branch }}
{% if "yoda" in current_user.role or "darth_vader" in current_user.role %}
{% endif %}
Icono
{% endif %} {% endfor %}
{% include 'includes/footer.html' %}
{% endblock content %} {% block javascripts %} {% endblock javascripts %}