Report

Plugin: {{ plugin }}
Started on:{{ started_on }}
Ended on:{{ ended_on }}

Summary

{% for header in summary_headers %} {% endfor %} {% for row in summary_rows %} {% for cell in row %} {% endfor %} {% endfor %}
{{ header }}
{{ cell.data }}

Details

{% for header in headers %} {% endfor %} {% set pass_icon = '' %} {% set fail_icon = '' %} {% for row in rows %} {% if row.type == 'data' %} {% for cell in row.data %} {% if cell.type == 'details' %} {% else %} {% endif %} {% endfor %} {% else %} {% endif %} {% endfor %}
{{ header }}
{% if cell.plugin_found %} {{ pass_icon }} Plugin: {{ cell.plugin }}
{% else %} {{ fail_icon }} Plugin: {{ cell.plugin }}
{% endif %} {% if cell.operation_found %} {{ pass_icon }} Operation: {{ cell.operation }}
{% else %} {{ fail_icon }} Operation: {{ cell.operation }}
{% endif %} {% if cell.params_found %} {{ pass_icon }} Params: {{ cell.params }}
{% else %} {{ fail_icon }} Params: {{ cell.params }}
{% endif %}
{{ cell.data }}
{{ row.data }}