{% 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 Version') }} {{ _('Application Build') }} {{ _('Platform') }} {{ _('e10s Enabled') }} {{ _('e10s Compatible') }} {{ _('Submitted') }}
{{ _('Success') if report.works_properly else _('Problem') }} {{ report.version }} {{ report.app_version }} {{ report.app_build }} {{ report.client_os }} {{ report.app_multiprocess_enabled }} {% if report.app_multiprocess_enabled == True and report.multiprocess_compatible == False %} {% endif %} {{ report.multiprocess_compatible }} {% if report.app_multiprocess_enabled == True and report.multiprocess_compatible == False %} {% endif %} {{ report.created|datetime }}
{{ report.comments }}
{{ reports|impala_paginator }} {% else %}

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

{% endif %}
{% endblock %}