{% extends 'wagtailadmin/reports/base_report.html' %} {% load i18n %} {% block results %} {% if object_list %} {% for cookie_consent in object_list %} {% endfor %}
{% trans 'Identifier' %} {% trans 'Location' %} {% trans 'Consent state' %} {% trans 'Timestamp' %}
{{cookie_consent.identifier}} {{cookie_consent.location}} {{cookie_consent.consent_state}} {{cookie_consent.timestamp}}
{% else %}

{% trans "No consent has been registered yet." %}

{% endif %} {% endblock %}