{% extends "devhub/base.html" %} {% if filename %} {# L10n: first parameter is a filename like lorem-ipsum-1.0.2.xpi #} {% set title = _('Validation Results for {0}')|f(filename) %} {% else %} {% set title = _('Validation Results') %} {% endif %} {% block title %}{{ dev_page_title(title, addon) }}{% endblock %} {% block content %}
{{ dev_breadcrumbs(addon, items=[(None, title)]) }}

{{ title }}

{% if timestamp %} {% endif %} {% if result_type == 'compat' %} {% endif %}
{{ _('Validated at:') }}
{{ _('Tested for compatibility against:') }} {{ amo.APP_IDS[target_app.pk].pretty }} {{ target_version }}
{% if result_type == 'compat' %} {% with app_trans=app_trans, version_change_links=version_change_links, target_version={target_app.guid: target_version.version} %} {% include "devhub/addons/includes/validation_compat_test_results.html" %} {% endwith %} {% else %} {% include "devhub/addons/includes/validation_test_results.html" %} {% endif %}
{% endblock %}