50 lines
1.1 KiB
HTML
50 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Timers</title>
|
|
<style>
|
|
body { font-family: sans-serif; margin: 2rem; }
|
|
table { border-collapse: collapse; width: 100%; }
|
|
th, td { border: 1px solid #ccc; padding: 0.5rem 0.75rem; text-align: left; }
|
|
th { background: #f5f5f5; }
|
|
td:first-child, th:first-child,
|
|
td:nth-child(4), th:nth-child(4),
|
|
td:nth-child(5), th:nth-child(5),
|
|
td:nth-child(6), th:nth-child(6) { text-align: center; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Timers</h1>
|
|
{% if timers %}
|
|
<table>
|
|
<thead><tr>
|
|
<th>#</th>
|
|
<th>Name</th>
|
|
<th>Message</th>
|
|
<th>Interval</th>
|
|
<th>Min Lines</th>
|
|
<th>Status</th>
|
|
<th>Last Fired</th>
|
|
</tr></thead>
|
|
<tbody>
|
|
{% for timer in timers %}
|
|
<tr>
|
|
<td>{{ timer.id }}</td>
|
|
<td>{{ timer.name }}</td>
|
|
<td>{{ timer.message }}</td>
|
|
<td>{{ timer.interval }}</td>
|
|
<td>{{ timer.min_lines }}</td>
|
|
<td>{{ timer.status }}</td>
|
|
<td>{{ timer.last_fired }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% else %}
|
|
<p>No timers have been created yet.</p>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|