{% 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 %}

    Your {{ recent_queries|length }} Most Recently Run

    {% for object in recent_queries %} {% endfor %}
    Query 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 %} by {{ object.created_by_user }} {% endif %} {{ object.run_count }}
    {% endblock %} {% block sql_explorer_scripts %} {% endblock %}