{% extends "impala/base_shared.html" %} {% block title %}{{ page_title(_('{addon} Compatibility Reports')|fe(addon=name)) }}{% endblock %} {% block bodyclass %}compat gutter{% endblock %} {% block content %} {% set detail_url = request.path %} {{ impala_breadcrumbs([(url('compat.reporter'), _('Add-on Compatibility Center')), (works_properly and detail_url, _('{addon} Compatibility Reports')|fe(addon=name))]) }}
{% if works.success or works.failure %} {{ ngettext('{0} success report', '{0} success reports', works.success)|f(works.success|numberfmt) }} {{ ngettext('{0} problem report', '{0} problem reports', works.failure)|f(works.failure|numberfmt) }} {% endif %} {% if works_properly %} {{ _('View all') }} {% endif %}

{{ _('{addon} Compatibility Reports')|fe(addon=name) }}

{% if reports.object_list %}
{% endif %}
{% trans url_ = url('addons.detail', '15003') %}

Reports submitted to us through the Add-on Compatibility Reporter are collected here for developers to view. These reports help us determine which add-ons will need help supporting an upcoming Firefox version.

{% endtrans %} {% if reports.object_list %} {% for report in reports.object_list %} {% set cls = 'success' if report.works_properly else 'problem' %} {% if report.comments %} {% endif %} {% endfor %}
{{ _('Report Type') }} {{ _('Version') }} {{ _('Application') }} {{ _('Application Build') }} {{ _('Platform') }} {{ _('Submitted') }}
{{ _('Success') if report.works_properly else _('Problem') }} {{ report.version }} {% with guid = amo.APP_GUIDS.get(report.app_guid) %} {% if guid %} {{ guid.pretty }} {% else %} {{ amo.UNKNOWN_APP.pretty }} ({{ report.app_guid }}) {% endif %} {% endwith %} {{ report.app_version }} {{ report.app_build }} {{ report.client_os }} {{ report.created|datetime }}
{{ report.comments }}
{{ reports|impala_paginator }} {% else %}

{{ _('No reports found.') }}

{% endif %}
{% endblock %}