{% extends "paxalia/base.html" %} {% load static i18n %} {% block title %}{% trans "Export Package" %} · {% trans "Paxalia Admin" %}{% endblock %} {% block page_title %}{% trans "Export package" %}{% endblock %} {% block page_subtitle %}{% trans "Choose the registered models that should travel together" %}{% endblock %} {% block extra_css %}{% endblock %} {% block dashboard_content %}
{% trans "Logical snapshot" %}

{% trans "Export selected models" %}

{% trans "Select one or more registered models. Paxalia exports only data visible through each model's Django Admin queryset." %}

{% if export_error %}{{ export_error }}{% endif %}
{% csrf_token %}
{% trans "Model selection" %}

{% trans "What should be included?" %}

{% trans "Use the search field to narrow the registry, then open an application group and select the models you need." %}

0 {% trans "selected" %}
{% for app_label, definitions in groups.items %}
{{ app_label }}{{ definitions|length }} {% trans "models" %}
{% for definition in definitions %} {% endfor %}
{% endfor %}
{% trans "Package options" %}

{% trans "Protect what you create" %}

{% trans "Normal packages are integrity-checked. Encrypted packages additionally protect the payload with authenticated encryption." %}

{% if require_encryption_for_protected %}

{% trans "Protected models require encryption before they can be exported." %}

{% endif %}
{% trans "History" %}
{% endblock %} {% block page_scripts %}{% endblock %}