{% extends "memory/memory_layout.html" %} {% load url from future %} {% load dashboard_extras staticfiles %} {% block page_name %}Memory consumption for {{ arch }}{% endblock %} {% block extra_headers %} {% endblock extra_headers %} {% block content %}

Memory consumption for {{ arch }} {% include "includes/chart_tooltip.html" %}

{% for machine in machines %}

{{ machine.name|display_name }}

{% if machine.has_image %} {% for img in image_types %} {% if img.machine__name = machine.name %}

Fresh Install - {{ img.image__variant }}

{% with 'pss' as metric %}

{{ metric }}

{% endwith %} {% endif %} {% endfor %} {% endif %} {% if machine.has_upgrade %} {% for img in image_types %} {% if img.machine__name = machine.name %}

Daily Upgrade - {{ img.upgrade__variant }}

{% with 'pss' as metric %}

{{ metric }}

{% endwith %} {% endif %} {% endfor %} {% endif %}
{% endfor %}
{% endblock %}