summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/templates/tables/jenkins_slaves.html
blob: 2d011b468988bab682ea80fda05bb178ef91a27f (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
{% extends "dashboard/table.html" %}
{% load staticfiles %}

{% 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.slaveurl }}>{{ slave.displayName }}</a>
            </th>
            <th style="background-color:{{ slave.status_color }}">
                {{ slave.status }}
            </th>
            <th><a {{ slave.last_job.blink }} style="color:{{ slave.last_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 %}