🎯 Black Duck Scan Overview
{% if analysis.aggregated.scan_types %}
{% set total_scans = analysis.aggregated.scan_types.values()|sum %}
🔍 Scan Types Breakdown
{% for scan_type, count in analysis.aggregated.scan_types.items() %}
{% set percentage = ((count / total_scans) * 100)|round(1) if total_scans > 0 else 0 %}
{{ scan_type }}
{{ count }} ({{ percentage }}%)
{% endfor %}
{% endif %}
Top Projects
{% if analysis.aggregated.projects_by_time_block %}
🕐 Top Projects by Time Block (3-hour intervals)
{% endif %}