{% extends 'preferences/layout.html' %} {% load i18n %} {% block title %}{% trans "User Export" %}{% endblock %} {% block header %} {% trans "User Export" %} {% endblock %} {% block panel %}

{% trans "Your exported archive file will include all user data for import into another Bookwyrm server" %}

{% csrf_token %}

{% trans "Recent Exports" %}

{% trans "User export files will show 'complete' once ready. This may take a little while. Click the link to download your file." %}

{% if not jobs %} {% endif %} {% for job in jobs %} {% endfor %}
{% trans "Date Created" %} {% trans "Last Updated" %} {% trans "Status" %}
{% trans "No recent imports" %}
{% if job.complete %}

{{ job.created_date }}

{% else %}

{{ job.created_date }}

{% endif %}
{{ job.updated_date }} {% if job.status %} {{ job.status }} {{ job.status_display }} {% elif job.complete %} {% trans "Complete" %} {% else %} {% trans "Active" %} {% endif %}
{% include 'snippets/pagination.html' with page=jobs path=request.path %}
{% endblock %}