{% extends "layout.html" %} {% load dashboard_extras staticfiles %} {% load render_table from django_tables2 %} {% block page_name %}Wakeups for {{ arch }}{% endblock %} {% block extra_headers %} {% endblock extra_headers %} {% block content %} {% with arch as active %}

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

{% include "power/eventstat/days_include.html" with day_urls=day_urls days=days %}
{% if machines %} {% for machine in machines %}

{{ machine.name }}

{% if machine.has_image %}

Fresh Installs

Task Overview {% with machine.id as machine_id %} {% render_table machine.install_table %} {% endwith %} {% endif %} {% if machine.has_upgrade %}

Upgrades

Task Overview {% with machine.id as machine_id %} {% render_table machine.upgrade_table %} {% endwith %} {% endif %}
{% endfor %} {% endif %}
{% endwith %} {% endblock %}