summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/dashboard/resource_detail.html
blob: 0a443d9ffba9577001721a7df9519471a632883c (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
<div class="row">
    <div class="col-lg-9">
        <div class="panel panel-default">
            <div class="panel-heading">
                Status
            </div>
            <div class="panel-body">
                <div class="list-group pre-scrollable">
                    {% for status in resource.resourcestatus_set.all %}
                        <a href="#" class="list-group-item">
                            <i class="fa fa-info fa-fw"></i> {{ status.title }}
                            <span class="pull-right text-muted small">
                                <em>{{ status.timestamp }}</em>
                            </span>
                        </a>
                    {% endfor %}
                </div>
            </div>
        </div>
    </div>
    <div class="col-lg-9">
        <div class="panel panel-default">
            <div class="panel-heading">
                Servers
            </div>
            <div class="panel-body">
                <div class="dataTables_wrapper">
                    <table class="table table-striped table-bordered table-hover"
                           id="{{ resource.id }}_server_table" cellspacing="0"
                           width="100%">
                        {% include "dashboard/server_table.html" %}
                    </table>
                </div>
            </div>
        </div>
    </div>
</div>
<div class="row">
    <div class="col-lg-3">
        <div class="panel panel-default">
            <div class="panel-heading">
                Booking Utilization
                <div class="pull-right">
                    <div class="form-group">
                        <select onchange="loadChartData('{{ resource.id }}_booking_utilization', this.value);">
                            <option value="{% url 'dashboard:booking_utilization' resource_id=resource.id weeks=-4 %}">
                                Last Month
                            </option>
                            <option value="{% url 'dashboard:booking_utilization' resource_id=resource.id weeks=-1 %}">
                                Last Week
                            </option>
                            <option value="{% url 'dashboard:booking_utilization' resource_id=resource.id weeks=1 %}">
                                Next Week
                            </option>
                            <option selected="selected"
                                    value="{% url 'dashboard:booking_utilization' resource_id=resource.id weeks=4 %}">
                                Next Month
                            </option>
                        </select>
                    </div>
                </div>
            </div>
            <div class="panel-body">
                <div class="flot-chart">
                    <div class="flot-chart-content"
                         id="{{ resource.id }}_booking_utilization"></div>
                </div>
            </div>
        </div>
    </div>
    <div class="col-lg-9">
        <div class="panel panel-default">
            <div class="panel-heading">
                Bookings
            </div>
            <div class="panel-body">
                <div class="dataTables_wrapper">
                    <table class="table table-striped table-bordered table-hover"
                           id="{{ resource.id }}_bookings_table" cellspacing="0"
                           width="100%">
                        {% include "booking/booking_table.html" %}
                    </table>
                </div>
            </div>
        </div>
    </div>
</div>
<div class="row">
    <div class="col-lg-3">
        <div class="panel panel-default">
            <div class="panel-heading">
                Contact
            </div>
            <div class="panel-body">
                <p>
                    <b>Lab Owner: </b>
                    {{ resource.owner.username }}
                </p>
                <p>
                    <b>Email: </b>
                    {{ resource.owner.email }}
                </p>
                <p>
                    <a href="{% url 'booking:create' resource_id=resource.id %}" class="btn btn-primary">
                        Booking
                    </a>
                    <a href="{{ resource.url }}" class="btn btn-primary">
                        OPNFV Wiki
                    </a>
                </p>
            </div>
        </div>
    </div>
    <div class="col-lg-6">
        <div class="panel panel-default">
            <div class="panel-heading">
                VPN Users
            </div>
            <div class="panel-body">
                <div class="dataTables_wrapper">
                    <table class="table table-striped table-bordered table-hover"
                           id="{{ resource.id }}_vpn_user_table" cellspacing="0"
                           width="100%">
                        <thead>
                        <tr>
                            <th>User</th>
                            <th>Email</th>
                            <th>Company</th>
                        </tr>
                        </thead>
                        <tbody>
                        {% for user in resource.vpn_users.all %}
                            <tr>
                                <td>
                                    {{ user.username }}
                                </td>
                                <td>
                                    {{ user.email }}
                                </td>
                                <td>
                                    {{ user.userprofile.company }}
                                </td>
                            </tr>
                        {% endfor %}
                    </table>
                    </tbody>
                </div>
            </div>
        </div>
    </div>
</div>