{% extends "layouts/base.html" %} {% block title %} Dashboard {% endblock %} {% block stylesheets %}{% endblock stylesheets %} {% block content %} {% include 'includes/navigation.html' %} New Task {% if "yoda" in current_user.role or "darth_vader" in current_user.role %} New user account New Stack {% endif %} New Deploy Services Status Stacks {{ stacks|length }} Deployments {{ deployments|length }} Tasks {{ tasks|length }} {% if "healthy" in api_healthy['status'] %} Api {{ api_healthy['status'] }} {% else %} Api down {% endif %} {% if "healthy" in remote_state_healthy['status'] %} RemoteState {{ remote_state_healthy['status'] }} {% else %} RemoteState down {% endif %} {% if "healthy" in schedule_healthy['status'] %} Schedule {{ schedule_healthy['status'] }} {% else %} Schedule down {% endif %} Metrics {% include 'includes/footer.html' %} {% endblock content %} {% block javascripts %} {% endblock javascripts %}