blob: 830ed198af1ad6dcb5b3842f4670f2e1c97207a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{% extends "dashboard/table.html" %}
{% load staticfiles %}
{% load jenkins_filters %}
{% block table %}
<thead>
<tr>
<th>Slave name</th>
<th>Status</th>
<th>Job</th>
</tr>
</thead>
<tbody>
{% for slave in slaves %}
<tr>
<th><a target='_blank'
href={{ slave.url }}>{{ slave.name }}</a>
</th>
<th style="background-color:{{ slave.status | jenkins_status_color }}">
{{ slave.status }}
</th>
<th><a {{ slave.last_job_result | jenkins_job_blink }}
style="color:{{ slave.last_job_result | jenkins_job_color }}"
target="_blank" href={{ slave.last_job_url }}>
{{ slave.last_job_name }}</a>
</th>
</tr>
{% endfor %}
</tbody>
{% endblock table %}
{% block tablejs %}
<script type="text/javascript">
$(document).ready(function () {
$('#table').DataTable({
columnDefs: [
{type: 'status', targets: 1}
],
"order": [[1, "asc"]]
});
});
</script>
{% endblock tablejs %}
|