{% 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))]) }}
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 %}{{ _('Report Type') }} | {{ _('Version') }} | {{ _('Application') }} | {{ _('Application Build') }} | {{ _('Platform') }} | {{ _('Submitted') }} | {% for report in reports.object_list %} {% set cls = 'success' if report.works_properly else 'problem' %}
---|---|---|---|---|---|
{{ _('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 }} |
{{ _('No reports found.') }}
{% endif %}