{% extends 'base.html' %} {% load export_tags %} {% block title %} | Export{% endblock %} {% block main %} {% include 'export_header.html' %}

Manage exports {% if exports %} Create new export {% endif %}

    {% for export in exports %}
  • {{ export.name }}

    Created by {{ export.creator.display_name }} | Expiration: {{ export|expiry }}

  • {% empty %}
  • We couldn't find any exports you are eligible to manage.

    You can create a new export to allow data to be accessed.

    Create a new export
  • {% endfor %}
{% endblock %}