{% extends "base.html" %} {% set active_page = "reports" %} {% block title %}FaultRay - Reports{% endblock %} {% block page_title %}Reports{% endblock %} {% block page_subtitle %}Generated compliance and analysis reports{% endblock %} {% block top_actions %} {% endblock %} {% block content %}
{% set reports_list = [ {"date": "2026-03-15 09:30", "name": "DORA Compliance Assessment Q1 2026", "type": "compliance", "format": "PDF"}, {"date": "2026-03-14 16:45", "name": "Infrastructure Resilience Report", "type": "simulation", "format": "HTML"}, {"date": "2026-03-14 14:20", "name": "Security Posture Analysis", "type": "security", "format": "PDF"}, {"date": "2026-03-13 11:00", "name": "Annual Risk Exposure Summary", "type": "cost", "format": "PDF"}, {"date": "2026-03-12 08:15", "name": "Chaos Test Results - Full Suite", "type": "simulation", "format": "JSON"}, {"date": "2026-03-10 15:30", "name": "SOC 2 Type II Evidence Pack", "type": "compliance", "format": "PDF"}, {"date": "2026-03-08 10:00", "name": "Cost Impact Analysis - DB Failure", "type": "cost", "format": "HTML"}, {"date": "2026-03-05 13:45", "name": "Penetration Test Summary", "type": "security", "format": "PDF"} ] %} {% for r in reports_list %} {% endfor %}
Date Report Type Format Action
{{ r.date }} {{ r.name }} {% if r.type == "compliance" %} Compliance {% elif r.type == "simulation" %} Simulation {% elif r.type == "security" %} Security {% else %} Cost {% endif %} {{ r.format }} Download

Generate New Report

{% endblock %}