summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/src/templates/dashboard/jenkins_slaves.html
blob: fa361b133441773f1aa700cb7ecc278128de2ed8 (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
46
{% 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>
            <td><a target='_blank'
                   href={{ slave.url }}>{{ slave.name }}</a>
            </td>
            <td style="background-color:{{ slave.status | jenkins_status_color }}">
                {{ slave.status }}
            </td>
            <td><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>
            </td>
        </tr>
    {% endfor %}
    </tbody>
{% endblock table %}


{% block tablejs %}
    <script type="text/javascript">
        $(document).ready(function () {
            $('#table').DataTable({
		scrollX: true,
                columnDefs: [
                    {type: 'status', targets: 1}
                ],
                "order": [[1, "asc"]]
            });
        });
    </script>
{% endblock tablejs %}