2013-08-02 00:08:37 -04:00
|
|
|
<div style="max-width:700px;margin:auto">
|
|
|
|
<h2 style="text-align:center">Pre-installation tests</h2>
|
|
|
|
<table class="modlog" style="margin-top:10px;max-width:600px">
|
|
|
|
<tr>
|
|
|
|
<th>Category</th>
|
|
|
|
<th>Test</th>
|
|
|
|
<th>Result</th>
|
|
|
|
</tr>
|
|
|
|
{% set errors = 0 %}
|
|
|
|
{% set warnings = 0 %}
|
|
|
|
{% for test in tests %}
|
|
|
|
<tr>
|
|
|
|
<td class="minimal"><strong>{{ test.category }}</strong></td>
|
|
|
|
<td>{{ test.name }}</td>
|
|
|
|
<td class="minimal" style="text-align:center">
|
|
|
|
{% if test.result %}
|
2013-08-02 16:19:20 -04:00
|
|
|
<i style="font-size:11pt;color:#090" class="icon-check-sign"></i>
|
2013-08-02 00:08:37 -04:00
|
|
|
{% else %}
|
|
|
|
{% if test.required %}
|
|
|
|
{% set errors = errors + 1 %}
|
2013-08-02 16:19:20 -04:00
|
|
|
<i style="font-size:11pt;color:#d00" class="icon-exclamation-sign"></i>
|
2013-08-02 00:08:37 -04:00
|
|
|
{% else %}
|
|
|
|
{% set warnings = warnings + 1 %}
|
2013-08-02 16:19:20 -04:00
|
|
|
<i style="font-size:11pt;color:#f80" class="icon-warning-sign"></i>
|
2013-08-02 00:08:37 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
{% if errors or warnings %}
|
|
|
|
<p><strong>There were {{ errors }} error(s) and {{ warnings }} warning(s).</strong></p>
|
|
|
|
<ul>
|
|
|
|
{% for test in tests if not test.result%}
|
|
|
|
<li style="margin-bottom:5px">
|
|
|
|
{% if test.required %}
|
2013-08-02 16:19:20 -04:00
|
|
|
<i style="font-size:11pt;color:#d00" class="icon-exclamation-sign"></i> <strong>Error:</strong>
|
2013-08-02 00:08:37 -04:00
|
|
|
{% else %}
|
2013-08-02 16:19:20 -04:00
|
|
|
<i style="font-size:11pt;color:#f80" class="icon-warning-sign"></i> <strong>Warning:</strong>
|
2013-08-02 00:08:37 -04:00
|
|
|
{% endif %}
|
|
|
|
{{ test.message }}
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% if errors %}
|
|
|
|
<p style="text-align:center"><a href="?step=2">Clik here to ignore errors and attempt installing anyway (not recommended).</a></p>
|
|
|
|
{% else %}
|
|
|
|
<p style="text-align:center"><a href="?step=2">Clik here to proceed with installation.</a></p>
|
|
|
|
{% endif %}
|
|
|
|
{% else %}
|
|
|
|
<p>There were no errors or warnings. Good!</p>
|
|
|
|
<p style="text-align:center"><a href="?step=2">Clik here to proceed with installation.</a></p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|