watchyourlan/src/templates/index.html
2022-08-20 23:26:36 +07:00

54 lines
No EOL
1.4 KiB
HTML

{{ define "index"}}
{{ template "header" }}
<body>
<div class="container mt-3">
<h2>Now online</h2>
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Ip</th>
<th>Mac</th>
<th>Hardware</th>
<th>Known</th>
</tr>
{{ range . }}
{{ if eq .Now 1 }}
<tr>
<td>{{ .Name }}</td>
<td>{{ .Ip }}</td>
<td>{{ .Mac }}</td>
<td>{{ .Hw }}</td>
<td>{{ .Known }}</td>
</tr>
{{ end }}
{{ end }}
</table>
<h2>Log</h2>
<table class="table table-striped">
<tr>
<th>Name</th>
<th>Ip</th>
<th>Mac</th>
<th>Hardware</th>
<th>Last seen</th>
<th>Known</th>
</tr>
{{ range . }}
{{ if eq .Now 0 }}
<tr>
<td>{{ .Name }}</td>
<td>{{ .Ip }}</td>
<td>{{ .Mac }}</td>
<td>{{ .Hw }}</td>
<td>{{ .Date }}</td>
<td>{{ .Known }}</td>
</tr>
{{ end }}
{{ end }}
</table>
</div>
</body>
</html>
{{ end }}