{% block head_extra %}{% endblock %}

{% block header_title %}{{ title }}{% endblock %}

{% block header_subtitle %}{% endblock %}
{% block model_info %} {% if model_info is defined and model_info %}
{% for key, value in model_info.items() %}
{{ value }}
{{ key | replace('_', ' ') | title }}
{% endfor %}
{% endif %} {% endblock %} {% block content %} {% for section in sections %}
{% if section.collapsible %}
{{ section.title }}
{% if section.content %}{{ section.content }}{% endif %} {% if section.table %} {% include 'includes/table.html' ignore missing %} {% endif %}
{% else %}

{{ section.title }}

{% if section.content %}{{ section.content }}{% endif %} {% if section.table %} {% for key in section.table[0].keys() %} {% endfor %} {% for row in section.table %} {% for key, val in row.items() %} {% if val is number %} {% elif key == 'significance' %} {% else %} {% endif %} {% endfor %} {% endfor %}
{{ key | replace('_', ' ') | title }}
{{ val | format_number(4) }}{{ val }}{{ val }}
{% endif %} {% if section.plot %}
{{ section.title }}
{% endif %} {% endif %}
{% endfor %} {% endblock %}