{% extends "explorer/base.html" %} {% load i18n static %} {% block sql_explorer_navlinks %} {% if can_change %}
  • {% trans "New Query" %}
  • {% trans "Playground" %}
  • {% trans "Logs" %}
  • {% endif %} {% endblock %} {% block sql_explorer_content %} {% 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 "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 %} {{ object.run_count }}
    {% endblock %} {% block sql_explorer_scripts %} {% endblock %}