aswi2022bug-thugs-gitlab/server/templates/devices/devices.html @ 9aae8d25
1 |
<html>
|
---|---|
2 |
<head>
|
3 |
<title>Devices Details</title> |
4 |
</head>
|
5 |
<body>
|
6 |
<table>
|
7 |
<TR>
|
8 |
<TH>ID</TH> |
9 |
<TH>Vendor ID</TH> |
10 |
<TH>Product ID</TH> |
11 |
<TH>Serial Number</TH> |
12 |
</TR>
|
13 |
{% for device in devs %} |
14 |
<TR>
|
15 |
<TD class="ID">{{device.id}}</TD> |
16 |
<TD class="Vendor ID">{{device.vendor_id}}</TD> |
17 |
<TD class="Product ID">{{device.product_id}}</TD> |
18 |
<TD class="Serial Number">{{device.serial_number}}</TD> |
19 |
</TR>
|
20 |
{% endfor %} |
21 |
</table>
|
22 |
</body>
|
23 |
</html>
|