Projekt

Obecné

Profil

Stáhnout (2.94 KB) Statistiky
| Větev: | Tag: | Revize:
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>Devices</option>
52
      <option value="/body-devices-web">Body Devices</option>
53
      <option value="/teams-web">Teams</option>
54
      <option value="/pcs-web">PCs</option>
55
      <option value="/licenses-web">Licenses</option>
56
  </select>
57
  <input type="submit" value="OK">
58
</form>
59
<form action="/devices-web" method="post">
60
    <label for="lic">License:</label>
61
    <input id="lic" name="lic" type="text" list="licenses" value="" placeholder="all">
62
    <datalist id="licenses">
63
        {% for license in licenses %}
64
        <option value="{{license.name}}"></option>
65
        {% endfor %}
66
    </datalist>
67
  <input type="submit" value="Filter">
68
</form>
69
<table id="devices">
70
    <TR>
71
        <TH>ID</TH>
72
        <TH>Keyman ID</TH>
73
        <TH>License Type</TH>
74
        <TH>License ID</TH>
75
        <TH>Inventory Number</TH>
76
        <TH>Team</TH>
77
        <TH>Last Username</TH>
78
        <TH>Last Hostname</TH>
79
        <TH>Last Detection</TH>
80
        <TH>Status</TH>
81
        <TH>Comment</TH>
82
    </TR>
83
    {% for dev in devices %}
84
    <TR>
85
        <TD class="ID">{{dev['device'].id}}</TD>
86
        <TD class="Serial Number">{{dev['device'].serial_number}}</TD>
87
        <TD class="License">{{dev['license'].name}}</TD>
88
        <TD class="License ID">{{dev['license'].license_id}}</TD>
89
        <TD class="Inventory Number">{{dev['device'].inventory_number}}</TD>
90
        <TD class="Team">{{dev['device'].team.name}}</TD>
91
        <TD class="Last Username">{{dev['log'].pc.username}}</TD>
92
        <TD class="Last Hostname">{{dev['log'].pc.hostname}}</TD>
93
        <TD class="Last Detection">{{dev['log'].timestamp}}</TD>
94
        <TD class="Status">{{dev['log'].status}}</TD>
95
        <TD class="Comment">{{dev['device'].comment}}</TD>
96
    </TR>
97
    {% endfor %}
98
</table>
99
</body>
100
</html>
(3-3/3)