{% load i18n %} {% if reports %}

{% trans "Security reports" %} {% blocktrans count count=reports.count %}({{ count }} report){% plural %}({{ count }} reports){% endblocktrans %}

{% for report in reports %} {% endfor %}
{% trans "Last seen" %} {% trans "First seen" %} {% trans "Source" %} {% trans "Violated directive" %}
{{ report.last_seen }} {{ report.first_seen }} {% if report.inline %} Inline: {% endif %} {{ report.source|urlizetrunc:110 }} {% if report.inline %} Line: {{ report.line }} Column: {{ report.column }} {% endif %} {% if report.error %}{% endif %} {{ report.violated_directive }}
{% endif %}