๐ฏ Black Duck Scan Overview i
{% if analysis.aggregated.scan_types %}
{% set total_scans = analysis.aggregated.scan_types.values()|sum %}
๐ Scan Types Breakdown i
{% 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 i
{% if analysis.aggregated.projects_by_time_block %}
๐ Top Projects by Time Block (3-hour intervals) i
{% endif %}