Projekt

Obecné

Profil

Stáhnout (1.05 KB) Statistiky
| Větev: | Tag: | Revize:
1 c0f38eab Matej Zeman
<html>
2
<head>
3
    <title>Logs Details</title>
4
</head>
5
<body>
6 9aae8d25 Matej Zeman
<form action="/api/v1/logs-web/" method="post">
7
  <label for="pc">PC:</label>
8
  <select id="pc" name="pc">
9
      <option value="all">all</option>
10
      {% for pc in pcs %}
11
    <option value={{pc.id}}>{{pc.username}}</option>
12
      {% endfor %}
13
  </select>
14
  <input type="submit" value="Filter">
15
</form>
16 c0f38eab Matej Zeman
    <table>
17
    <TR>
18
        <TH>ID</TH>
19 99c92c11 Matej Zeman
        <TH>PC Username</TH>
20
        <TH>PC Hostname</TH>
21 c0f38eab Matej Zeman
        <TH>Timestamp</TH>
22
        <TH>Status</TH>
23 99c92c11 Matej Zeman
        <TH>Device Product ID</TH>
24
        <TH>Device Serial Number</TH>
25 c0f38eab Matej Zeman
    </TR>
26
    {% for log in logs %}
27
    <TR>
28
        <TD class="ID">{{log.id}}</TD>
29 99c92c11 Matej Zeman
        <TD class="Username">{{log.pc.username}}</TD>
30
        <TD class="Hostname">{{log.pc.hostname}}</TD>
31 c0f38eab Matej Zeman
        <TD class="Timestamp">{{log.timestamp}}</TD>
32
        <TD class="Status">{{log.status}}</TD>
33 99c92c11 Matej Zeman
        <TD class="DeviceProductID">{{log.device.product_id}}</TD>
34
        <TD class="DeviceSerialNumber">{{log.device.serial_number}}</TD>
35 c0f38eab Matej Zeman
    </TR>
36
    {% endfor %}
37
</table>
38
</body>
39
</html>