You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
3 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>bog</title>
|
||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||
|
</head>
|
||
|
<body>
|
||
|
<table class="table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th scope="col">Name</th>
|
||
|
<th scope="col">Last Seen</th>
|
||
|
<th scope="col">Quota</th>
|
||
|
<th scope="col">Usage</th>
|
||
|
<th scope="col">Download</th>
|
||
|
<th scope="col">Upload</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{{ range . }}
|
||
|
<tr>
|
||
|
<td>{{ .Name }}</td>
|
||
|
<td>{{ .LastSeen }} - {{ .AllowanceDuration }}</td>
|
||
|
<td>{{ .FileQuota.CurrentUsage }}/{{ .FileQuota.AllowanceKB}} B</td>
|
||
|
<td>{{ .Usage.SizeB }}B - {{ .Usage.Num }} </td>
|
||
|
<td>{{ .Download.SizeB }}B - {{ .Download.Num }} </td>
|
||
|
<td>{{ .Upload.SizeB }}B - {{ .Upload.Num }} </td>
|
||
|
</tr>
|
||
|
{{ end }}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|