{% extends "reports/base.html" %} {% load i18n %} {% load base_filters %} {% block content %}

{% trans "404 URL Report" %}

{% if entry_list|length < 1 %}

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

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