aswi2022bug-thugs-gitlab/server/templates/pcs/pcs.html @ 9aae8d25
1 |
<html>
|
---|---|
2 |
<head>
|
3 |
<title>Pcs Details</title> |
4 |
</head>
|
5 |
<body>
|
6 |
<table>
|
7 |
<TR>
|
8 |
<TH>ID</TH> |
9 |
<TH>Username</TH> |
10 |
<TH>Hostname</TH> |
11 |
</TR>
|
12 |
{% for pc in pcs %} |
13 |
<TR>
|
14 |
<TD class="ID">{{pc.id}}</TD> |
15 |
<TD class="Vendor ID">{{pc.username}}</TD> |
16 |
<TD class="Product ID">{{pc.hostname}}</TD> |
17 |
</TR>
|
18 |
{% endfor %} |
19 |
</table>
|
20 |
</body>
|
21 |
</html>
|