{% extends 'base_site.html' %} {% load i18n %} {% load static %} {% block title %} {% trans 'Export Data' %} | {{ site_name }} {% endblock %} {% block content %}

Export Data

{% for group, model_list in models.items %}

{{group}}

{% for model in model_list %}
{% if model.title %}

{{model.title}}

{% else %}

{{model.cache_properties.module}} Class

{% endif %} {% if model.description %}

{{model.description}}

{% endif %} {% if model.description_list %}
    {% for item in model.description_list %}
  • {{item}}
  • {% endfor %}
{% endif %}

Excel

CSV

{% endfor %}
{% endfor %} {% comment %} {% url "exports:supersetsecretsquirrel" %}' for Superset code {% endcomment %}
{% endblock content %}