{% if request_data.source_artifact.lookup %}
{% include "web/_summary_artifact.html" with description="Source artifact" artifact=request_data.source_artifact only %}
{% endif %}
{% if request_data.binary_artifacts.lookup %}
{% include "web/_summary_artifacts.html" with description="Binary artifacts" artifacts=request_data.binary_artifacts %}
{% endif %}
Summary of tags
{% for severity, count in tags_count_severity.items %}
{{ severity }}: {{ count }}
{% endfor %}
Tags
{% for file, file_tags in tags.items %}
{{ file }}
{% for tag_name, tag_content in file_tags.items %}
{% include "web/_tag_severity.html" with tag=tag_name content=tag_content only %}
{{ tag_name }}
{% if tag_content.explanation %}
{% include "web/_tag_explanation.html" with tag_content=tag_content only %}
{% endif %}
{% for tag in tag_content.occurrences %}
{% include "web/_lintian_tag.html" with tag=tag only %}