Pre-installation tests

{% set errors = 0 %} {% set warnings = 0 %} {% for test in tests %} {% endfor %}
Category Test Result
{{ test.category }} {{ test.name }} {% if test.result %} {% else %} {% if test.required %} {% set errors = errors + 1 %} {% else %} {% set warnings = warnings + 1 %} {% endif %} {% endif %}
{% if errors or warnings %}

There were {{ errors }} error(s) and {{ warnings }} warning(s).

{% if errors %}

Clik here to ignore errors and attempt installing anyway (not recommended).

{% else %}

Clik here to proceed with installation.

{% endif %} {% else %}

There were no errors or warnings. Good!

Clik here to proceed with installation.

{% endif %}