{% extends "devhub/addons/submit/base.html" %} {% block title %} {{ dev_page_title(_('Submission Complete'), addon) }} {% endblock %} {% block primary %} {% set version_edit_url = url('devhub.versions.edit', addon.slug, uploaded_version.id) %} {% if uploaded_version.channel == amo.RELEASE_CHANNEL_LISTED %}

{{ _("Version Submitted for Review") }}

{{ _("You’re done! This version has been submitted for review. You will be " "notified when the review has been completed, or if our reviewers have " "any questions about your submission.") }}

{% if submit_page == 'addon' %}

{{ _("Your listing will be more successful by adding a detailed description " "and screenshots. Get your listing ready for publication:") }}

{% endif %}

{{ _("Manage Listing") }}

{{ _("You can also edit this version to add version notes, or source code " "if your submission includes minified, obfuscated or compiled code.") }}

{{ _("Edit version {0}")|fe(uploaded_version.version) }}

{% else %}

{{ _("Version Signed") }}

{{ _("You’re done! This version is signed and ready to for self-distribution." "You can download it by clicking the button below.") }}

{% set file = uploaded_version.all_files[-1] %} {{ _("Download {0}")|fe(file.pretty_filename()) }}

{% endif %} {% if uploaded_version.is_allowed_upload() %}

{{ _("You selected only some of the available platforms for this submission. " "You can upload more files that target other platforms:") }}

{% if waffle.switch('step-version-upload') %} {% set version_upload_url = url('devhub.submit.file', addon.slug, uploaded_version.id) %} {% else %} {% set version_upload_url = version_edit_url %} {% endif %} {{ _("Upload File") }}

{% endif %}

{{ _("Go to My Submissions") }}

{% endblock %}