{% from "_macros/addon_tile.html" import addon_tile %} {% set endpoint = api('addon', [slug]) %}
{% defer (url=endpoint, key=slug, id='addon-data', as='addon') %} {% set addon = apps.transform(this) %}
{{ addon_tile(addon, is_detail=True, src=trackingEvents.SRCS.detail) }}
{% if addon.description %}

{{ _('Description') }}

{{ addon.description|translate(addon)|nl2br }}

{{ _('View All') }}
{% endif %}

{{ _('version: {version}')|format(version=addon.latest_public_version.version) }}

{{ _('size: {size}')|format(size=addon.latest_public_version.size|fileSize) }}

{% if addon.last_updated %}

{{ _('last updated: {date}')|format(date=addon.last_updated|date) }}

{% endif %}
{{ _('Report to Mozilla') }}
{% placeholder %}
{% if placeholder %} {{ addon_tile(placeholder, is_detail=True) }} {% endif %}
{% except %} {% end %}