summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/templates/dashboard/lab_owner.html
blob: a4f428c7bc55868b97d1d6e291faf117efbb5cff (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{% extends "base.html" %}
{% load staticfiles %}

{% block extrahead %}
    <!-- Morris Charts CSS -->
    <link href="{% static "bower_components/morrisjs/morris.css" %}" rel="stylesheet">

    <!-- DataTables CSS -->
    <link href="{% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" %}"
          rel="stylesheet">

    <!-- DataTables Responsive CSS -->
    <link href="{% static "bower_components/datatables-responsive/css/dataTables.responsive.css" %}"
          rel="stylesheet">
{% endblock extrahead %}


{% block content %}
    {% for resource, utilization, bookings in pods %}
        <div class="row">
            <div class="col-lg-3">
                <div class="panel panel-default">
                    <div class="panel-heading">
                        {{ resource.name }}
                    </div>
                    <div class="panel-body">
                        <div class="flot-chart">
                            <div class="flot-chart-content" id="{{ resource.slave.name }}"></div>
                        </div>
                    </div>
                </div>
            </div>
            <div class="col-lg-6">
                <div class="panel panel-default">
                    <div class="panel-heading">
                        {{ resource.name }} Bookings
                    </div>
                    <div class="panel-body">
                        <div class="dataTables_wrapper">
                            <table class="table table-striped table-bordered table-hover"
                                   id="{{ resource.slave.name }}_bookings" cellspacing="0"
                                   width="100%">
                                <thead>
                                <tr>
                                    <th>User</th>
                                    <th>Purpose</th>
                                    <th>Start</th>
                                    <th>End</th>
                                    <th>Status</th>
                                </tr>
                                </thead>
                                <tbody>
                                {% for booking in bookings %}
                                    <tr>
                                        <th>
                                            {{ booking.user.username }}
                                        </th>
                                        <th>
                                            {{ booking.purpose }}
                                        </th>
                                        <th>
                                            {{ booking.start }}
                                        </th>
                                        <th>
                                            {{ booking.end }}
                                        </th>
                                        <th>
                                            Jira Status
                                        </th>
                                    </tr>
                                {% endfor %}`
                                </tbody>
                            </table>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    {% endfor %}

{% endblock content %}


{% block extrajs %}
    <!-- DataTables JavaScript -->
    <link href="{% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.css" %}"
          rel="stylesheet">


    <script src={% static "bower_components/datatables/media/js/jquery.dataTables.min.js" %}></script>
    <script src={% static "bower_components/datatables-plugins/integration/bootstrap/3/dataTables.bootstrap.min.js" %}></script>



    <!-- Flot Charts JavaScript -->
    <script src="{% static "bower_components/flot/excanvas.min.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.pie.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.resize.js" %}"></script>
    <script src="{% static "bower_components/flot/jquery.flot.time.js" %}"></script>
    <script src="{% static "bower_components/flot.tooltip/js/jquery.flot.tooltip.min.js" %}"></script>

    <script type="text/javascript">
        $(document).ready(function () {


            {% for resource, utilization, bookings in pods %}
                $('#{{ resource.slave.name }}_bookings').DataTable({});

                $(function () {
                    var data = [{
                        label: "Offline",
                        data: {{ utilization.offline }},
                        color: '#d9534f'
                    }, {
                        label: "Online",
                        data: {{ utilization.online }},
                        color: '#5cb85c'
                    }, {
                        label: "Idle",
                        data: {{ utilization.idle }},
                        color: '#5bc0de'
                    }];

                    var plotObj = $.plot($("#{{ resource.slave.name }}"), data, {
                        series: {
                            pie: {
                                show: true
                            }
                        },
                        grid: {
                            hoverable: false
                        },
                        tooltip: true,
                        tooltipOpts: {
                            content: "%p.0%, %s", // show percentages, rounding to 2 decimal places
                            shifts: {
                                x: 20,
                                y: 0
                            },
                            defaultTheme: false
                        }
                    });

                });
            {% endfor %}

        });
    </script>

{% endblock extrajs %}