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

All Teams

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