{% extends "explorer/base.html" %}
{% block sql_explorer_navlinks %}
{% if can_change %}
New Query
Playground
Logs
{% endif %}
{% endblock %}
{% block sql_explorer_content %}
{% if recent_queries|length > 0 %}
{{ recent_queries|length }} Most Recently Used
Query |
Last Run |
Download CSV |
{% for object in recent_queries %}
{{ object }} |
{{ object.last_run_date|date:"SHORT_DATETIME_FORMAT" }} |
|
{% endfor %}
{% endif %}
All Queries
Query |
Created |
Download CSV |
{% if can_change %}
Delete |
{% endif %}
{% for object in object_list %}
{{ object }} |
{{ object.created_at|date:"SHORT_DATE_FORMAT" }} by {% firstof object.created_by_user 'unknown' %} |
|
{% if can_change %}
|
{% endif %}
{% endfor %}
{% endblock %}