{% extends 'base.html' %} {% block title %}Accessibility {{current_type|capitalize}}s{% endblock %} {% block content %} {% set color_class = {'error': 'danger', 'warning': 'warning', 'notice': 'info'} %}

Accessibility {{current_type}}s


{% for type in ['error', 'warning', 'notice'] %} {{type}}s {{ violation_counts[type] }} Click to show {{type}}s. {% endfor %}
{% for violation in grouped_violations %} {% endfor %}
Type WCAG Message HTML Page Count
{{violation.type}} {% for ref in wcag_refs(violation.code) %} Docs for {{ ref }} {% endfor %} {{violation.message}} {{ violation.selector | escape }}
{{ violation.context | escape }}
{{violation.pages|length}}
{% endblock content %}