{% load markdown %} {% load i18n %} {% load vulns %}

{% trans 'Technical Details' %}

{% blocktrans %} This section contains a list of all vulnerabilities found and how to reproduce them. Impact and criticality information is provided for each vulnerability. Recommendations for remediation are also included. {% endblocktrans %}

{% for template in templates %}

{{ template.name }}

Description

{{ template.description|md_to_html }}

Recommendation

{{ template.recommendation|md_to_html }}

{% if template.reference_set.count %}

References

{% endif %}
{% for vulnerability in template|get_vulns_for_project:project %} {% include './single_vulnerability.html' %} {% endfor %}
{% if not forloop.last %}
{% endif %}
{% endfor %}