GrantAxis Risk Report
Generated: {{ timestamp }}
{% for section, findings in data.items() if section != "timestamp" %}
{{ section.replace('_', ' ').title() }} ({{ findings | length }})
{% if findings %}
{% for key in findings[0].keys() %}
{{ key }} |
{% endfor %}
{% for row in findings %}
{% for val in row.values() %}
{{ val }} |
{% endfor %}
{% endfor %}
{% else %}
No findings.
{% endif %}
{% endfor %}