{% load i18n %}
{% trans "Back" %}

{% trans "SQL Profiled" %}

{% if result %}
{% trans "Executed SQL" %}
{{ sql|safe }}
{% trans "Time" %}
{{ duration }} ms
{% for h in headers %} {% endfor %} {% for row in result %} {% for column in row %} {% endfor %} {% endfor %}
{{ h|upper }}
{{ column|escape }}
{% else %}
{% trans 'Error' %}
{{ result_error }}
{% endif %}