1
|
<html>
|
2
|
<head>
|
3
|
<style>
|
4
|
#devices {
|
5
|
font-family: Arial, Helvetica, sans-serif;
|
6
|
border-collapse: collapse;
|
7
|
width: 100%;
|
8
|
}
|
9
|
|
10
|
#devices td, #devices th {
|
11
|
border: 1px solid #ddd;
|
12
|
padding: 8px;
|
13
|
}
|
14
|
|
15
|
#devices tr:nth-child(even){background-color: #f2f2f2;}
|
16
|
|
17
|
#devices tr:hover {background-color: #ddd;}
|
18
|
|
19
|
#devices th {
|
20
|
padding-top: 12px;
|
21
|
padding-bottom: 12px;
|
22
|
text-align: left;
|
23
|
background-color: #47BBF5;
|
24
|
color: black;
|
25
|
}
|
26
|
</style>
|
27
|
<title>Devices Details</title>
|
28
|
</head>
|
29
|
<body>
|
30
|
<div style='float:left;padding-right:20px'>
|
31
|
<b>Your role: {{user}}</b>
|
32
|
</div>
|
33
|
<div style='float:left;padding-right:5px'>
|
34
|
<form action="/login" method="get">
|
35
|
<input type="submit" value="Login" />
|
36
|
</form>
|
37
|
</div>
|
38
|
<div style='float:left;padding-right:5px'>
|
39
|
<form action="/signup" method="get">
|
40
|
<input type="submit" value="Sign Up" />
|
41
|
</form>
|
42
|
</div>
|
43
|
<form action="/logout" method="get">
|
44
|
<input type="submit" value="Logout" />
|
45
|
</form>
|
46
|
<form action="" method="get">
|
47
|
<label for="view">Choose view:</label>
|
48
|
<select id="view" name="view" onchange="this.form.action=this.value;">
|
49
|
<option value="/logs-web">Vector Logs</option>
|
50
|
<option value="/ldlogs-web">Lauterbach Logs</option>
|
51
|
<option value="/devices-web" selected>Keyman Devices</option>
|
52
|
<option value="/body-devices-web">Lauterbach Body Devices</option>
|
53
|
<option value="/head-devices-web">Lauterbach Head Devices</option>
|
54
|
<option value="/teams-web">Teams</option>
|
55
|
<option value="/pcs-web">PCs</option>
|
56
|
<option value="/licenses-web">Licenses</option>
|
57
|
</select>
|
58
|
<input type="submit" value="OK">
|
59
|
</form>
|
60
|
<form action="/devices-web" method="post">
|
61
|
<label for="keyman_id">Keyman ID:</label>
|
62
|
<input id="keyman_id" name="keyman_id" type="text" list="keyman_ids" value="{{keyman_val}}" placeholder="all" onClick="this.select();">
|
63
|
<datalist id="keyman_ids">
|
64
|
{% for dev in devs %}
|
65
|
<option value="{{dev.serial_number}}"></option>
|
66
|
{% endfor %}
|
67
|
</datalist>
|
68
|
<label for="lic_name">License Type:</label>
|
69
|
<input id="lic_name" name="lic_name" type="text" list="licenses_names" value="{{licn_val}}" placeholder="all" onClick="this.select();">
|
70
|
<datalist id="licenses_names">
|
71
|
{% for license in licenses %}
|
72
|
<option value="{{license.name}}"></option>
|
73
|
{% endfor %}
|
74
|
</datalist>
|
75
|
<label for="lic_id">License ID:</label>
|
76
|
<input id="lic_id" name="lic_id" type="text" list="licenses_ids" value="{{lici_val}}" placeholder="all" onClick="this.select();">
|
77
|
<datalist id="licenses_ids">
|
78
|
{% for license in licenses %}
|
79
|
<option value="{{license.license_id}}"></option>
|
80
|
{% endfor %}
|
81
|
</datalist>
|
82
|
<label for="team">Team:</label>
|
83
|
<input id="team" name="team" type="text" list="teams" value="{{team_val}}" placeholder="all" onClick="this.select();">
|
84
|
<datalist id="teams">
|
85
|
{% for team in teams %}
|
86
|
<option value="{{team.name}}">{{team.name}}</option>
|
87
|
{% endfor %}
|
88
|
</datalist>
|
89
|
<input type="submit" value="Filter">
|
90
|
</form>
|
91
|
<table id="devices">
|
92
|
<TR>
|
93
|
<TH>ID</TH>
|
94
|
<TH>Keyman ID</TH>
|
95
|
<TH>License Type</TH>
|
96
|
<TH>License ID</TH>
|
97
|
<TH>Inventory Number</TH>
|
98
|
<TH>Team</TH>
|
99
|
<TH>Last Username</TH>
|
100
|
<TH>Last Hostname</TH>
|
101
|
<TH>Last Detection</TH>
|
102
|
<TH>Status</TH>
|
103
|
<TH>Comment</TH>
|
104
|
</TR>
|
105
|
{% for dev in devices %}
|
106
|
<TR>
|
107
|
<TD class="ID"><a href="/device-license/{{dev['device'].id}}">{{dev['device'].id}}</a></TD>
|
108
|
<TD class="Serial Number">{{dev['device'].serial_number}}</TD>
|
109
|
<TD class="License">{{dev['license'].name}}</TD>
|
110
|
<TD class="License ID">{{dev['license'].license_id}}</TD>
|
111
|
<TD class="Inventory Number">{{dev['device'].inventory_number}}</TD>
|
112
|
<TD class="Team">{{dev['device'].team.name}}</TD>
|
113
|
<TD class="Last Username">{{dev['log'].pc.username}}</TD>
|
114
|
<TD class="Last Hostname">{{dev['log'].pc.hostname}}</TD>
|
115
|
<TD class="Last Detection">{{dev['log'].timestamp}}</TD>
|
116
|
<TD class="Status">{{dev['log'].status}}</TD>
|
117
|
<TD class="Comment">{{dev['device'].comment}}</TD>
|
118
|
</TR>
|
119
|
{% endfor %}
|
120
|
</table>
|
121
|
</body>
|
122
|
</html>
|