aboutsummaryrefslogtreecommitdiff
path: root/lava_scheduler_app/templates/lava_scheduler_app/failure_report.html
blob: 2738f10b960501f8494b5ac0ef03ffd5b8ab0cb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "layouts/content-bootstrap.html" %}
{% load django_tables2 %}

{% block content %}
{% if device %}
<h2>Failure Report <small>(device <a href="{% url 'lava.scheduler.device.detail' device %}">{{ device }}</a>)</small></h2>
{% elif device_type %}
<h2>Failure Report <small>(type <a href="{% url 'lava.scheduler.device_type.detail' device_type %}">{{ device_type }}</a>)</small></h2>
{% else %}
<h2>Failure Report</h2>
{% endif %}
<br/>
{% render_table failed_job_table %}

{% endblock %}

{% block scripts %}
<script type="text/javascript" src="{{ STATIC_URL }}lava_scheduler_app/js/tables.js"></script>
{% endblock %}