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

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

{{ _("Manage Listing") }}

{{ _("You can also edit this version you just submitted by adding 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[0] %} {{ _("Download {0}")|fe(file.pretty_filename()) }}

{% endif %} {% if is_platform_specific %}

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

{{ _("Upload File") }}

{% endif %}

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

{% endblock %}