{% extends "impala/base_shared.html" %} {% set is_author = request.check_ownership(addon, require_owner=False) %} {% block title %}{{ page_title(addon.name) }}{% endblock %} {% block js %} {% endblock %} {% block bodyclass %}gutter addon-details {{ super() }}{% endblock %} {% block extrahead %} {% if settings.ENGAGE_ROBOTS and addon.status == amo.STATUS_UNREVIEWED %} {% endif %} {% endblock %} {% block header_content %}
{% set version = addon.current_version %} {# All this depends on the addon or version, and nothing needs the user, so we can cache it all against the addon. #}
{# L10n: {0} is an add-on name. #} {{ _('Icon of {0}')|fe(addon.name) }}

{{ addon.name }} {% if version %} {{ version.version }} {% endif %} {% if addon.is_no_restart() %}  {{ _('No Restart') }} {% endif %}

{{ _('by') }} {{ users_list(addon.listed_authors) }}

{{ addon.summary|nl2br }}

{% if version %} {{ big_install_button(addon, show_warning=False, impala=True) }} {% endif %} {% if addon.is_featured(APP, LANG) %} {% endif %}
{{ dependencies_note(addon) }} {% if addon.takes_contributions %} {{ impala_contribution(addon=addon, src='dp-btn-primary') }} {% elif addon.has_profile() and addon.listed_authors %}
{% with single_dev = addon.listed_authors|random %}

{% trans count=addon.listed_authors|length, name=single_dev.name, url=addon.meet_the_dev_url() %} Meet the Developer: {{ name }} {% pluralize %} Meet the Developers {% endtrans %}

{{ single_dev.name }}

{{ _("Learn why {0} was created and find out what's next for this " "add-on.")|fe(addon.name) }}

{% endwith %}
{% endif %}
{% endblock header_content %} {% block content %} {{ impala_breadcrumbs([(addon.type_url(), amo.ADDON_TYPES[addon.type]), (None, addon.name)]) }} {% if not waffle.flag('restyle') %}
{% set version = addon.current_version %} {# All this depends on the addon or version, and nothing needs the user, so we can cache it all against the addon. #}
{# L10n: {0} is an add-on name. #} {{ _('Icon of {0}')|fe(addon.name) }}

{{ addon.name }} {% if version %} {{ version.version }} {% endif %} {% if addon.is_no_restart() %}  {{ _('No Restart') }} {% endif %}

{{ _('by') }} {{ users_list(addon.listed_authors) }}

{{ addon.summary|nl2br }}

{% if version %} {{ big_install_button(addon, show_warning=False, impala=True) }} {% endif %} {% if addon.is_featured(APP, LANG) %} {% endif %}
{{ dependencies_note(addon) }} {% if addon.takes_contributions %} {{ impala_contribution(addon=addon, src='dp-btn-primary') }} {% elif addon.has_profile() and addon.listed_authors %}
{% with single_dev = addon.listed_authors|random %}

{% trans count=addon.listed_authors|length, name=single_dev.name, url=addon.meet_the_dev_url() %} Meet the Developer: {{ name }} {% pluralize %} Meet the Developers {% endtrans %}

{{ single_dev.name }}

{{ _("Learn why {0} was created and find out what's next for this " "add-on.")|fe(addon.name) }}

{% endwith %}
{% endif %}
{% endif %}{# TODO: Remove this duplicated div once the refresh is live #} {% if addon.type != amo.ADDON_PERSONA %} {% set version = addon.current_version %} {% if addon.all_previews|length > 0 %}
{% endif %} {% endif %}

{{ _('About this Add-on') }}

{% if addon.description %}
{{ addon.description|nl2br }}
{% else %}
{{ addon.summary|nl2br }}
{% endif %}
{% if version or addon.developer_comments or addon.show_beta %}
{% if addon.developer_comments %}

{{ _('Developer’s Comments') }}

{{ addon.developer_comments|nl2br }}

{% endif %} {% if version %}

{{ _('Version Information') }}

{{ version_detail(addon, version, src=version_src, impala=True) }}

{{ _('See complete version history') }}

{% endif %} {% if addon.show_beta %}

{{ _('Development Channel') }}

{% trans %} The Development Channel lets you test an experimental new version of this add-on before it's released to the general public. Once you install the development version, you will continue to get updates from this channel. To stop receiving development updates, reinstall the default version from the link above. {% endtrans %}

{% trans %} Caution: Development versions of this add-on have not been reviewed by Mozilla. {% endtrans %}

{{ _('Version {0}:')|f( addon.current_beta_version.version) }}
{{ install_button(addon, latest_beta=True, show_warning=False, impala=True, src=request.GET.get('src', 'dp-btn-devchannel')) }}

{{ _('See complete development channel history') }}

{% endif %}
{% endif %} {# The rest of the detail page content is in details-more.html. We want above-the-fold to return and render really fast so we pull in reviews and links to other add-ons with js. #} {% endblock content %} {% block popups %} {% if addon.privacy_policy %} {% endif %} {% if addon.eula %} {% endif %} {% if review_form and request.user.is_authenticated() %} {{ impala_review_add_box(addon=addon) }} {% endif %} {% if abuse_form %} {% endif %} {% endblock %}