Revize 0fcb708f
Přidáno uživatelem Matěj Zeman před téměř 3 roky(ů)
server/templates/ld-logs/ldlogs_normal.html | ||
---|---|---|
49 | 49 |
<option value="/logs-web">Vector Logs</option> |
50 | 50 |
<option value="/ldlogs-web" selected>Lauterbach Logs</option> |
51 | 51 |
<option value="/devices-web">Keyman Devices</option> |
52 |
<option value="/body-devices-web">Lauterbach Devices</option> |
|
52 |
<option value="/body-devices-web">Lauterbach Body Devices</option> |
|
53 |
<option value="/head-devices-web">Lauterbach Head Devices</option> |
|
53 | 54 |
<option value="/teams-web">Teams</option> |
54 | 55 |
<option value="/pcs-web">PCs</option> |
55 | 56 |
<option value="/licenses-web">Licenses</option> |
... | ... | |
75 | 76 |
<input id="lic" name="lic" type="text" list="licenses" value="" placeholder="all"> |
76 | 77 |
<datalist id="licenses"> |
77 | 78 |
{% for license in licenses %} |
78 |
<option value="{{license.name}}"></option> |
|
79 |
<option value="{{license.name}} : {{license.license_id}}"></option>
|
|
79 | 80 |
{% endfor %} |
80 | 81 |
</datalist> |
81 | 82 |
<input type="submit" value="Filter"> |
... | ... | |
85 | 86 |
<TH>ID</TH> |
86 | 87 |
<TH>PC Username</TH> |
87 | 88 |
<TH>PC Hostname</TH> |
88 |
<TH>Team</TH> |
|
89 |
<TH>Head Team</TH> |
|
90 |
<TH>Body Team</TH> |
|
89 | 91 |
<TH>Timestamp</TH> |
90 | 92 |
<TH>Status</TH> |
91 | 93 |
<TH>Lauterbach Head ID</TH> |
... | ... | |
96 | 98 |
<TD class="ID">{{log.id}}</TD> |
97 | 99 |
<TD class="Username">{{log.ldpc.username}}</TD> |
98 | 100 |
<TD class="Hostname">{{log.ldpc.hostname}}</TD> |
99 |
{% if log.ldpc.team == None %} |
|
100 |
<TD class="Team">NONE</TD> |
|
101 |
{% else %} |
|
102 |
<TD class="Team">{{log.ldpc.team.name}}</TD> |
|
103 |
{% endif %} |
|
101 |
<TD class="Head Team">{{log.head_device.team.name}}</TD> |
|
102 |
<TD class="Body Team">{{log.body_device.team.name}}</TD> |
|
104 | 103 |
<TD class="Timestamp">{{log.timestamp}}</TD> |
105 | 104 |
<TD class="Status">{{log.status}}</TD> |
106 | 105 |
<TD class="HeadDeviceSerialNumber">{{log.head_device.serial_number}}</TD> |
107 | 106 |
<TD class="BodyDeviceSerialNumber">{{log.body_device.serial_number}}</TD> |
108 | 107 |
</TR> |
109 |
{% endfor %} |
|
108 |
{% endfor %}
|
|
110 | 109 |
</table> |
111 | 110 |
</body> |
112 | 111 |
</html> |
Také k dispozici: Unified diff
re #9846 Changed keyman devices, body devices views. Added Head devices view. Changed filtering of logs, ldlogs, body devices, head devices and keyman devices. Changed HTML tables style and few labels.