{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% trans "Mobile App" %}{% endblock %} {% block content %}

{% trans "Mobile App" %}

{% trans "Status" %}

{% trans "Configuration" %}

{% trans "Branding asset readiness" %}

{% if not branding_icon_present %}

{% trans "Warning: a high-resolution square icon is required before the branding asset package can be fully generated." %}

{% endif %} {% if branding_icon_present and not branding_splash_present %}

{% trans "Warning: splash image is missing. A fallback splash can be generated, but a dedicated splash asset is recommended." %}

{% endif %}

{% trans "Native capability planning" %}

{% trans "Enabled capabilities" %}: {% if enabled_capabilities %} {% for capability in enabled_capabilities %}{{ capability.key }}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %} {% trans "None" %} {% endif %}

{% trans "Planned capabilities" %}: {% if planned_capabilities %} {% for capability in planned_capabilities %}{{ capability.key }}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %} {% trans "None" %} {% endif %}

{% trans "Runtime verification backlog" %}: {% if runtime_verification_capabilities %} {% for capability in runtime_verification_capabilities %}{{ capability.key }}{% if not forloop.last %}, {% endif %}{% endfor %} {% else %} {% trans "None" %} {% endif %}

{% if native_upload_dependencies %}

{% trans "Generated native upload dependencies" %}: {{ native_upload_dependencies|join:", " }}

{% endif %} {% if bridge_dependencies %}

{% trans "Generated bridge dependencies" %}: {{ bridge_dependencies|join:", " }}

{% endif %} {% if settings_obj.enable_secure_storage %}

{% trans "Secure storage backend" %}: {{ secure_storage_backend }}

{% endif %} {% if settings_obj.enable_camera_uploads and not settings_obj.ios_camera_usage_description %}

{% trans "Warning: camera uploads are enabled but the iOS camera usage description is still empty." %}

{% endif %}

{% trans "Permission placeholders" %}

{% trans "Android" %}

{% trans "iOS" %}

{% trans "Deep link planning" %}

{% trans "Runtime policies" %}

{% trans "PWA / offline readiness" %}

{% trans "Suggested commands" %}

python manage.py mobileapp_check --site-id={{ selected_site.pk }}
python manage.py mobileapp_generate --site-id={{ selected_site.pk }}
python manage.py mobileapp_build_android --site-id={{ selected_site.pk }}
python manage.py mobileapp_build_ios --site-id={{ selected_site.pk }}

{% trans "Store readiness warning" %}

{{ store_warning }}

{% if recommended_capacitor_packages %}

{% trans "If you implement the enabled native features, start with these packages:" %}

{{ recommended_capacitor_packages|join:" " }}

{% endif %}
{% endblock %}