{% extends "explorer/base.html" %} {% load explorer_tags i18n static %} {% block sql_explorer_content %}
{% csrf_token %}
{% if recent_queries|length > 0 %}

{% blocktrans trimmed with qlen=recent_queries|length %} Your {{qlen}} Most Recently Run {% endblocktrans %}

{% for object in recent_queries %} {% endfor %}
{% trans "Query" %} {% trans "Last Run" %} CSV
{{ object.query.title }} {{ object.run_at|date:"SHORT_DATETIME_FORMAT" }}
{% endif %}

{% trans "All Queries" %}

{% if tasks_enabled %} {% endif %} {% if can_change %} {% endif %} {% for object in object_list %} {% if object.is_header %} {% else %} {% if tasks_enabled %} {% endif %} {% if can_change %} {% endif %} {% endif %} {% endfor %}
{% trans "Query" %} {% trans "Created" %}{% trans "Email" %}{% trans "CSV" %}{% trans "Play" %} {% trans "Delete" %}{% trans "Favorite" %} {% trans "Ran Successfully" %} {% trans "Run Count" %}
{{ object.title }} ({{ object.count }}) {{ object.title }} {{ object.created_at|date:"SHORT_DATE_FORMAT" }} {% if object.created_by_user %} {% blocktrans trimmed with cuser=object.created_by_user %} by {{cuser}} {% endblocktrans %} {% endif %} {% query_favorite_button object.id object.is_favorite 'query_favorite_toggle' %} {% if object.ran_successfully %} {% elif object.ran_successfully is not None %} {% endif %} {{ object.run_count }}
{% endblock %}