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 %}

Warning: Ignoring these problems is not recommended and may cause installation issues.

{% else %}

{% endif %} {% else %}

There were no errors or warnings. Good!

{% endif %}