{% from 'addons/macros.html' import price %}
{% if product.summary %} {{ product.summary|nl2br }}

{% endif %}

{{ _('Details') }}

{{ _('Manifest URL') }}
{{ product.manifest_url }} {{ _('View') }}
{{ _('Default Locale') }}
{{ product.default_locale }}
{{ _('Price') }}
{{ price(product) }} {% if product.is_premium() %} · {% endif %}
{{ _('Updated') }}
{% if product.homepage %}
{{ _('Website') }}
{{ product.homepage }}
{% endif %} {% if product.compatible_apps[APP] %}
{{ _('Works with') }}
{{ product.compatible_apps[APP] }}
{% endif %} {% if product.total_reviews %}
{{ _('Rating') }}
{{ impala_reviews_link(product) }}
{% endif %}
{{ _('Total Downloads') }}
{{ product.total_downloads|numberfmt }} {% if product.public_stats %} {{ _('View Statistics') }} {% endif %}
{{ _('Weekly Downloads') }}
{{ product.weekly_downloads|numberfmt }}
{{ _('Abuse Reports') }}
{{ product.abuse_reports.count()|numberfmt }}
{% with device_types = product.device_types %} {% if device_types %}
{{ _('Device Types') }}
{% for device in device_types %} {{ device.name }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %} {% endwith %} {% if product.privacy_policy %}
{{ _('Privacy Policy') }}
{{ _('View Privacy Policy') }}
{% endif %}
{{ _('Authors') }}
{% for author in product.authors.all() %} {{ author.name }}{% if not loop.last %}, {% endif %} {% endfor %}
{{ _('Categories') }}
{% for category in product.categories.all() %} {{ category.name }}{% if not loop.last %}, {% endif %} {% endfor %}
{% if flags %}
{{ _('Flags') }}
{{ flags|join(', ') }}
{% endif %}
{% if product.description or product.all_previews|length > 1 or product.developer_comments %}

{{ _('Description') }}

{{ product.description|nl2br }}

{% if product.all_previews|length > 1 %}

{{ _('Image Gallery') }}

{% for preview in product.all_previews %} {% endfor %} {% endif %} {% if product.developer_comments %}

{{ _('Developer Comments') }}

{{ product.developer_comments|nl2br }}

{% endif %}
{# /article #} {% else %}

{{ _('More about this app') }}

{{ _('Nothing to see here! The developer did not include any details.') }}
{% endif %} {% if reviews is defined %} {{ review_list_box(addon=product, reviews=reviews) }} {% endif %} {% if review_form %} {% if request.user.is_authenticated() %} {{ review_add_box(addon=product) }} {% endif %} {% endif %} {% if abuse_form %} {{ addon_report_abuse(hide=True, addon=product) }} {% endif %}