{% extends 'detail/protected_app.html' %}
{% set amouser = request.amo_user if request.user.is_authenticated() else None %}
{% set can_review = product.can_review(amouser) %}
{% set purchased = amouser and product.pk in amouser.purchase_ids() %}
{% block title %}{{ mkt_page_title(product.name) }}{% endblock %}
{% block bodyclass %}detail{% endblock %}
{% block extrahead %}
{{ super() }}
{% for preview in product.all_previews %}
{% endfor %}
{% endblock %}
{# Breadcrumbs show just one category for now. #}
{% set cats = product.all_categories %}
{% set first_cat = cats[0] if cats else None %}
{% block content %}
{% include 'purchase/error.html' %}
{{ mkt_breadcrumbs(items=[(url('browse.apps'), _('Apps')),
(None, product.name)]) }}
{% if not (is_dev or is_admin) and not product.is_public() %}
{{ product.premium.get_price_locale() }}
{% for category in cats %}
{{ category }}{% if not loop.last %}, {% endif %}
{% endfor %}
{{ product|weekly_downloads }}
{{ _('Installed!') }}
{% trans %}
Launch this app from your Applications directory.
{% endtrans %}
{% trans %}
Launch this app from your Windows desktop or
Start ► All Programs.
{% endtrans %}
{% trans %}
Launch this app from your Dash, Application picker,
or Applications menu.
{% endtrans %}
{% if 'id' in request.GET %}
#{{ product.id }}
{% endif %}
{{ product.name }}
{% if 'id' in request.GET %}
#{{ product.id }}
{% endif %}
{{ product.name }}
{% if product.listed_authors %}
{{ users_list(product.listed_authors, size=3) }}
{{ product.listed_authors[0]|user_link }}
{% endif %}
{% set categories = product.all_categories %}
{% if is_author and product.is_premium() and product.premium %}
{{ product.summary|nl2br }} {% if product.description %} {{ _('More…') }} {% endif %}
{% if product.description or product.developer_comments %}{{ _('This app is not yet rated.') }}
{% endif %} {% endif %}{{ emaillink(product.support_email.localized_string, _('Support Email'), 'arrow') }}
{% endif %} {% if product.support_url %} {% endif %}{{ product.created|timelabel }}