45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Device Dashboard</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
|
</head>
|
|
<body class="p-3">
|
|
|
|
<h2>Device Dashboard</h2>
|
|
|
|
<div class="mb-3">
|
|
<a href="{{ url_for('logs') }}" class="btn btn-primary">Live Log</a>
|
|
<a href="{{ url_for('devices') }}" class="btn btn-secondary">Devices verwalten</a>
|
|
<a href="{{ url_for('switches') }}" class="btn btn-secondary">Switches verwalten</a>
|
|
<a href="{{ url_for('settings') }}" class="btn btn-warning">Einstellungen</a>
|
|
</div>
|
|
|
|
<p>Prüfintervall: <strong>{{ interval }} Minuten</strong></p>
|
|
|
|
<table class="table table-bordered table-striped">
|
|
<thead class="table-dark">
|
|
<tr>
|
|
<th>Device-Name</th>
|
|
<th>Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for d in devices %}
|
|
<tr>
|
|
<td>{{ d['name'] }}</td>
|
|
<td>
|
|
{% if status[d['name']] == 'online' %}
|
|
<span class="badge bg-success">Online</span>
|
|
{% else %}
|
|
<span class="badge bg-danger">Offline</span>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|