{% extends "devhub/addons/submit/base.html" %} {% block title %} {{ dev_page_title(_('Submission Complete'), addon) }} {% endblock %} {% block primary %}

{{ _("You're done!") }}

{% if addon.is_listed %}

{% if addon.status == amo.STATUS_NOMINATED %} {{ _('Your add-on has been submitted to the New Add-on queue.') }} {% endif %}

{{ _("You'll receive an email once it has been reviewed by an editor and " "signed. Once it has been signed you will be able to install it:") }}

{{ addon.get_url_path()|absolutify|display_url }}

{{ _('Next steps:') }}

{{ _('Get Ahead in the Review Queue!') }}

{{ _('Become an AMO Reviewer today and get your add-ons reviewed faster.') }} {{ _('Learn More') }}

{% else %} {% set signed = addon.status == amo.STATUS_PUBLIC %} {% if signed %}

{{ _('Your add-on has been signed and it\'s ready to use. You can download it here:') }}

{% set version_url = url('devhub.versions.edit', addon.slug, addon.current_version.id) %} {{ version_url|absolutify|display_url }}

{% else %}

{% if addon.status == amo.STATUS_NOMINATED %} {{ _('Your add-on has been submitted to the Unlisted New Add-on queue.') }} {% endif %}

{{ _('You\'ll receive an email once it has been reviewed by an editor and signed.') }}

{% endif %}

{{ _('Your add-on will not be publicly available on this website.') }}

{{ _('Next steps:') }}

{% endif %} {% endblock %}