{% extends "admin/base.html" %} {% set title = 'Bulk Addon Validation' %} {% block title %}{{ page_title(title) }}{% endblock %} {% block content %}

{{ title }}

{{ form.errors }}
{{ csrf() }}
{% for elem in ('application', 'curr_max_version', 'target_version') %} {{ form[elem] }} {% endfor %}
{{ form['finish_email'] }}
{% for job in validation_jobs %} {% endfor %}
ID Tests Started Tests Finished Application Current Version Target Version Tested Failing Passing Exceptions Actions
{{ job.pk }} {{ job.created }} {{ job.completed }} {{ amo.APPS_ALL[job.application].pretty }} {{ job.curr_max_version.version }} {{ job.target_version.version }} {{ job.stats['total'] }} {{ job.stats['failing'] }} {{ job.stats['passing'] }} {{ job.stats['errors'] }} {% if job.completed %} View Summary
Notify and set max versions {% if job.preview_notify_mail_link %} [Download Email Log] {% endif %} {% endif %}
{% endblock %}