{% extends "explorer/base.html" %}
{% load staticfiles %}
{% load url from future %}
{% 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 |
CSV |
{% for object in recent_queries %}
{{ object }} |
{{ object.last_run_date|date:"SHORT_DATETIME_FORMAT" }} |
|
{% endfor %}
{% endif %}
{% endblock %}
{% block sql_explorer_scripts %}
{% endblock %}