{% extends "base.html" %} {% block title %}Applications{% endblock %} {% block content %}

All Applications

{% if links['application']: %} {% endif %} {% for application_id, app in applications.items()|sort: %} {% if links['application']: %} {% endif %} {%endfor %}
ID Team A? C P CR MR CPU Memory (MiB) Cost Slack Cost
{{ application_id }} {{ app.team }} {% if app.active is not none: %} {% if app.active: %} {% else: %} {% endif %} {% endif %} {{ app.clusters|count }} {{ app.pods }} {{ app.requests.cpu|round(3) }} {{ app.requests.memory|filesizeformat(True) }} {{ elements.resource_bar_cpu(app) }} {{ elements.resource_bar_memory(app) }} {{ app.cost|money }} {{ app.slack_cost|money }}
{% endblock %}