{# /** * @file * Default template for the Run & Review page. * * Available variables: * - checks: Array of check informations. * A check information consists of: * - result: The check's result (string). * - message: The result message. * - help_link: The link to the check's help page. * - toggle_link: The toggle link for the check. * - skipped: Whether the check is skipped. */ #}

{% trans %} Review results from last run {{ date }} {% endtrans %}

{% trans %} Here you can review the results from the last run of the checklist. Checks are not always perfectly correct in their procedure and result. You can keep a check from running by clicking the 'Skip' link beside it. You can run the checklist again by expanding the fieldset above. {% endtrans %}

{% for check in checks %} {% set style = '' %} {% if check.result is defined %} {% set style = style ~ ' ' ~ check.result %} {% endif %} {% if check.skipped %} {% set style = style ~ ' skipped' %} {% endif %} {% endfor %}
{% if icons[check.result] is defined %} {% endif %} {{ check.message }} {{ check.help_link }}