{% if result %}
Security Scan complete: {{ result|length }} potential XSS issues found...
{% for route, results in result %} {% set results_string = [] %} {% for key, value in results %} {% set results_string = results_string|merge(['' ~ key ~ ': ' ~ value|titleize ~ '']) %} {% endfor %} {% endfor %}
{{ route }}{{ results_string|join(', ')|raw }}
{% else %}
Security Scan complete: No issues found...
{% endif %}