{% extends "squad/base.html" %} {% load humanize %} {% load squad %} {% load static %} {% block content %} {% include "squad/build-nav.html" %}

Test Jobs

{% for testjob in testjobs %}
{% if not testjob.failure %} {% else %} {% endif %} {% if testjob.url %}{% endif %}{{ testjob.job_id }}, {{ testjob.environment }}, {{ testjob.name }} ({{testjob.job_status}}){% if testjob.url %}{% endif %} {% if testjob.submitted %} Submitted {% else %} Submitted {% endif %} {% if testjob.fetched %} Fetched {% else %} Fetched Last fetch attempt: {{ testjob.last_fetch_attempt|naturaltime }} {% endif %} {% if testjob.testrun %} Test run #{{testjob.testrun.job_id}} {% endif %} {% if testjob.parent_job %} Resubmitted from #{{testjob.parent_job.job_id}} {% endif %} {% if testjob.failure %} {% endif %} {% if testjob.definition %} {% endif %} {% if user.is_staff or user.is_superuser %} {% endif %}
{% if testjob.failure %}

Error message

{{ testjob.failure }}
{% endif %} {% if testjob.definition %}

Definition

{{ testjob.definition }}
{% endif %}
{% endfor %}
{% endblock %} {% block javascript %} {% endblock %}