{% include "web/_lintian_severity_filter.html" with severity="error" status=tags_filter_status.error only %}
{% include "web/_lintian_severity_filter.html" with severity="warning" status=tags_filter_status.warning only %}
{% include "web/_lintian_severity_filter.html" with severity="info" status=tags_filter_status.info only %}
{% include "web/_lintian_severity_filter.html" with severity="pedantic" status=tags_filter_status.pedantic only %}
{% include "web/_lintian_severity_filter.html" with severity="experimental" status=tags_filter_status.experimental only %}
{% include "web/_lintian_severity_filter.html" with severity="overridden" status=tags_filter_status.overridden only %}
{% include "web/_lintian_severity_filter.html" with severity="classification" status=tags_filter_status.classification only %}
{% for file, file_tags in tags.items %}
{{ file }}
{% for tag_name, tag_content in file_tags.items %}
{% include "web/_tag_severity.html" with severity=tag_content.severity 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 %}