{% extends "maasserver/base.html" %} {% block nav-active-result-list %}active{% endblock %} {% block title %}Node commissioning results{% endblock %} {% block page-title %} {{ paginator.count }} result{{ paginator.count|pluralize }} in {% include "maasserver/site_title.html" %} {% endblock %} {% block html_includes %}{% include "maasserver/snippets.html" %} {% endblock %} {% block content %}

Commissioning results {% if nodes_filter %} for {{ nodes_filter }} {% endif %}

{% if paginator.count == 0 %}

No matching commissioning results.

{% else %} {% for result_item in results_list %} {% endfor %}
Script result Output file Registered at Node
{% if result_item.script_result == 0 %} OK {% else %} FAILED {% endif %} {{ result_item.name }} {{ result_item.created }} {{ result_item.node.hostname }}
{% endif %}
{% endblock %}