{% extends "base.html" %} {% block title %}Tests Report{% endblock %} {% block header_title %}{{ title | default('Statistical Tests Report') }}{% endblock %} {% block content %} {% if tables and tables.tests %}

Test Results Summary

{% for test in tables.tests %} {% endfor %}
TestStatisticp-valueConclusion
{{ test.test }} {{ test.get('statistic', '---') | format_number(4) if test.get('statistic') is not none else '---' }} {{ test.get('p_value', '---') | format_pvalue if test.get('p_value') is not none else '---' }} {{ test.get('conclusion', '---') }}
{% endif %} {% if conclusions %}

Conclusions

{{ conclusions }}
{% endif %} {{ super() }} {% endblock %}