{% extends "reports/base.html" %} {% load base_filters %} {% block content %} {% if entry_list|length < 1 %}

{% trans "There is nothing to report" %}

{% else %} {% for entry in entry_list %} {% endfor %}
{% trans "Count" %} {% trans "URL" %}
{{ entry.count }} {{ entry.url }}

{% endif %} {% endblock content %}