dia-gov's picture
Upload 433 files
5f491f6 verified
Raw
History Blame Contribute Delete
394 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Scan Report</title>
</head>
<body>
<h1>Scan Results</h1>
{% for target, results in scan_results.items() %}
<h2>Target: {{ target }}</h2>
{% for module, module_results in results.items() %}
<h3>Module: {{ module }}</h3>
<pre>{{ module_results }}</pre>
{% endfor %}
{% endfor %}
</body>
</html>