{% extends 'lookup/base.html' %} {% block breadcrumbs %} {% endblock %} {% block content %} {% include 'lookup/includes/app_search.html' %}
{{ app_header(app, 'summary') }}
{{ _('Authors') }}
{% for usr in authors %}
{{ usr.display_name }}
{% endfor %}
{{ _('Mozilla Contact') }}
{% if app.mozilla_contact %} {{ app.mozilla_contact }} {% else %} {{ _('None') }} {% endif %}
{{ _('Manifest') }}
{{ app.manifest_url }}
{{ _('Type') }}
{{ amo.ADDON_TYPE[app.type] }}; {{ amo.ADDON_PREMIUM_TYPES[app.premium_type] }} {% if price %} ({{ price.get_price_locale() }}) {% endif %}
{{ _('Submitted') }}
{{ app.created|babel_datetime }}
{{ _('Status') }}
{{ amo.STATUS_CHOICES[app.status] }}
{{ _('Abuse Reports') }}
{{ abuse_reports }}
{{ _('Permissions') }}
TBD: permissions not supported yet
{{ _('Downloads') }}
{{ _('last 24 hours') }}: {{ downloads['last_24_hours'] }}
{{ _('last 7 days') }}: {{ downloads['last_7_days'] }}
{{ _('all time') }}: {{ downloads['alltime'] }}

{{ _('Payments') }}

{{ _('Purchases') }}
TBD: bug 765764
{{ _('Refunds') }}
TBD: bug 765765
{{ _('Methods') }}
TBD: bug 765767
{% endblock %}