{% extends "wagtailadmin/generic/base.html" %} {% load i18n static wagtailadmin_tags %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %} {% block main_content %}
{% icon name="help" %}

{% translate "Maintenance mode will be activated for the duration of the export." %}

{% if databases %} {% blocktrans with tables_count=view.tables|length database=view.selected_database.NAME %}Exporting {{tables_count}} tables from {{ database }}{% endblocktrans %} {% else %} {% blocktrans with tables_count=view.tables|length %}Exporting {{tables_count}} tables{% endblocktrans %} {% endif %}

{% if dumps|length > 0 %} {% if "import_export.download_dump" in perms %} {% endif %} {% if "import_export.import_database" in perms %} {% endif %} {% for dump in dumps %} {% if "import_export.download_dump" in perms %} {% endif %} {% if "import_export.import_database" in perms %} {% endif %} {% endfor %}

{% translate "Download" %}

{% translate "Recover" %}{% translate "Database" %} {% translate "Tables" %} {% translate "File Size" %} {% translate "Created At" %}
{% translate "Download Dump" %} {% translate "Recover" %} {{dump.database|upper}} {% if forloop.counter0 == 0 %} {% translate "Latest" %} {% endif %} {{dump.tables|length}} {{dump.filesize}} {{dump.created|date:"d/m/Y H:i:s"}}
{% else %}

{% translate "No database dumps found." %}

{% endif %}

{% translate "Export the database to a ZIP archive containing .sql files." %}

{% if "import_export.download_dump" in perms %} {% endif %} {% if databases %}
{% endif %}
{% endblock %}