{% extends 'timeseer.html' %} {% from 'flows.html' import flows_breadcrumb, flows_header with context %} {% from 'macros.html' import menu_back %} {% block menu %} {{ menu_back(url_for('flows.display_flow', flowevaluationid=block_evaluation.flow_evaluation.db_id, sourcename=source_name)) }} {% endblock %} {% set title = 'Exports' %} {% block breadcrumb %} {{ flows_breadcrumb(block_evaluation, [ (block_evaluation.name, url_for('exports.list_exports', blockevaluationid=block_evaluation.db_id, sourcename=source_name)), title, ]) }} {% endblock %} {% block main %} {{ flows_header(block_evaluation, title) }} {% if exports|count > 0 %} {% for export in exports|sort(attribute='date', reverse=True) %} {% if export.date %}
  • {{ export.filename }}
    {{ export.date|ts_datetime }}
  • {% endif %} {% endfor %} {% else %}

    No exports found.

    {% endif %} {% endblock %}