The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.9KB

  1. <div style="max-width:700px;margin:auto">
  2. <h2 style="text-align:center">Pre-installation tests</h2>
  3. <table class="modlog" style="margin-top:10px;max-width:600px">
  4. <tr>
  5. <th>Category</th>
  6. <th>Test</th>
  7. <th>Result</th>
  8. </tr>
  9. {% set errors = 0 %}
  10. {% set warnings = 0 %}
  11. {% for test in tests %}
  12. <tr>
  13. <td class="minimal"><strong>{{ test.category }}</strong></td>
  14. <td>{{ test.name }}</td>
  15. <td class="minimal" style="text-align:center">
  16. {% if test.result %}
  17. <i style="font-size:11pt;color:#090" class="fa fa-check"></i>
  18. {% else %}
  19. {% if test.required %}
  20. {% set errors = errors + 1 %}
  21. <i style="font-size:11pt;color:#d00" class="fa fa-exclamation"></i>
  22. {% else %}
  23. {% set warnings = warnings + 1 %}
  24. <i style="font-size:11pt;color:#f80" class="fa fa-warning"></i>
  25. {% endif %}
  26. {% endif %}
  27. </td>
  28. </tr>
  29. {% endfor %}
  30. </table>
  31. {% if errors or warnings %}
  32. <p><strong>There were {{ errors }} error(s) and {{ warnings }} warning(s).</strong></p>
  33. <ul>
  34. {% for test in tests if not test.result%}
  35. <li style="margin-bottom:5px">
  36. {% if test.required %}
  37. <i style="font-size:11pt;color:#d00" class="fa fa-exclamation"></i> <strong>Error:</strong>
  38. {% else %}
  39. <i style="font-size:11pt;color:#f80" class="fa fa-warning"></i> <strong>Warning:</strong>
  40. {% endif %}
  41. {{ test.message }}
  42. </li>
  43. {% endfor %}
  44. </ul>
  45. {% if errors %}
  46. <p style="text-align:center"><a href="?step=2">Click here to ignore errors and attempt installing anyway (not recommended).</a></p>
  47. {% else %}
  48. <p style="text-align:center"><a href="?step=2">Click here to proceed with installation.</a></p>
  49. {% endif %}
  50. {% else %}
  51. <p>There were no errors or warnings. Good!</p>
  52. <p style="text-align:center"><a href="?step=2">Clik here to proceed with installation.</a></p>
  53. {% endif %}
  54. </div>