{% extends "layout.html" %} {% block title %} Resalloc pools {% endblock %} {% block content %}

Resalloc pools

{% for pool, info in information.items()|sort(attribute='0') %} {% endfor %}
Pool Max Up Ready Taken Starting Delete Requested Deleting Releasing
Totals {{ summary.MAX }} {{ summary.UP }} {{ summary.READY }} {{ summary.TAKEN }} {{ summary.STARTING }} {{ summary.DELETE_REQUEST }} {{ summary.DELETING }} {{ summary.RELEASING }}
{% if info['DESCRIPTION'] %}
{{ pool }} {{ info['DESCRIPTION'] }}
{% else %} {{ pool }} {% endif %}
{{ info['MAX'] }} {{ info['UP'] }} {{ info['READY'] }} {{ info['TAKEN'] }} {{ info['STARTING'] }} {{ info['DELETE_REQUEST'] }} {{ info['DELETING'] }} {{ info['RELEASING'] }}
{% endblock %}