{% load i18n %}

{{ report.name }}

{{ report_definition.label }}

{% trans "Executed" %}: {{ execution.executed_at }}

{% trans "Rows" %}: {{ execution.row_count }}

{% if execution.details %}

{% trans "Parameters" %}

{% endif %} {% if execution.columns %} {% for column in execution.columns %} {% endfor %} {% for row in execution.rows %} {% for value in row %} {% endfor %} {% endfor %}
{{ column }}
{{ value }}
{% endif %}