{% extends "base/base.html" %} {% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% block content %} {% load static %}
{% if reports %}

{% trans "Reports" %}

{% if handle %} {{ handle }} {% else %} {% blocktrans %}{{ reports_total_count }} reports for {{ apps_total_count }} applications{% endblocktrans %} {% endif %}


{% if not handle %} {% endif %}
{% for report in reports %} {% with report.application as app %}
{{ app.handle }}
{{ app.version|truncatechars_html:20 }}
{% with nb_trackers=report.found_trackers.count %} {{ nb_trackers }} {% blocktrans count count=nb_trackers %}tracker{% plural %}trackers{% endblocktrans %} {% endwith %} {% with nb_perm=app.permissions|length %} {{ nb_perm }} {% blocktrans count count=nb_perm %}permission{% plural %}permissions{% endblocktrans %} {% endwith %}
{% endwith %} {% endfor %}
{% include "base/paginator.html" %}
{% endif %}
{% endblock %}