{% 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" %}

{% if next_available %}

{% blocktrans trimmed %} You will be able to create a new export file at {{ next_available }} {% endblocktrans %}

{% else %}
{% csrf_token %}
{% endif %}

{% 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" %} {% trans "Status" %}
{% trans "No recent imports" %}
{{ job.updated_date }} {% if job.status %} {{ job.status }} {{ job.status_display }} {% elif job.complete %} {% trans "Complete" %} {% else %} {% trans "Active" %} {% endif %} {% if job.complete and not job.status == "stopped" and not job.status == "failed" %}

{% trans "Download your export" %}

{% endif %}
{% include 'snippets/pagination.html' with page=jobs path=request.path %}
{% endblock %}