{% extends "explorer/base.html" %} {% block sql_explorer_navlinks %} {% if can_change %}
  • New Query
  • Playground
  • {% endif %}
  • Logs
  • Data Export
  • {% endblock %} {% block sql_explorer_content %}
    {% if messages %} {% for message in messages %} {% if message.tags %} {% if 'info' in message.tags %} {% elif 'error' in message.tags %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %} {% endif %} {% if enable_form %}
    {% csrf_token %} {% for field in form %} {% if field.errors %}
    {{ field }}
    {% else %}
    {{ field }}
    {% endif %} {% endfor %}
    {% endif %} {% if messages or enable_form %}
    {% endif %}
    Current Exports
    {% for obj in objects %} {% empty %} {% endfor %}
    Creation Date Expiry Date Author Format Status Download Delete
    {{ obj.start_dt }} {% if obj.end_dt %} {{ obj.end_dt }} {% else %} ----- {% endif %} {{ obj.author }} {{ obj.export_format }} {{ obj.status }} {% if obj.status == 'completed' %} Click to Download {% endif %} Delete
    None. You can generate an export file by clicking the Generate button above.
    {% endblock %}