{% extends "explorer/base.html" %}
{% load i18n static %}
{% block sql_explorer_content %}
{% if recent_queries|length > 0 %}
{% blocktrans trimmed with qlen=recent_queries|length %}
Your {{qlen}} Most Recently Run
{% endblocktrans %}
{% trans "Query" %} |
{% trans "Last Run" %} |
CSV |
{% for object in recent_queries %}
{{ object.query.title }}
|
{{ object.run_at|date:"SHORT_DATETIME_FORMAT" }} |
|
{% endfor %}
{% endif %}
{% trans "Query" %} |
{% trans "Created" %} |
{% if tasks_enabled %}
{% trans "Email" %} |
{% endif %}
{% trans "CSV" %} |
{% if can_change %}
{% trans "Play" %} |
{% trans "Delete" %} |
{% endif %}
{% trans "Run Count" %} |
{% for object in object_list %}
{% if object.is_header %}
{{ object.title }} ({{ object.count }})
|
{% else %}
{{ 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 %}
|
{% if tasks_enabled %}
|
{% endif %}
|
{% if can_change %}
|
|
{% endif %}
{{ object.run_count }} |
{% endif %}
{% endfor %}
{% endblock %}
{% block sql_explorer_scripts %}
{% endblock %}