Files
Owlbot/owlbot/builtin_modules/timers/templates/list.html
T
LogalDeveloper 410c0cd791
CI / Formatting (push) Successful in 13s
CI / Linting (push) Successful in 14s
CI / Tests (Python 3.12) (push) Failing after 29s
CI / Tests (Python 3.13) (push) Failing after 29s
CI / Tests (Python 3.14) (push) Failing after 26s
CI / Type Checking (push) Failing after 25s
CI / Spelling (push) Successful in 13s
Added centralized templating system with static asset serving.
2026-02-27 10:05:52 -05:00

36 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block title %}Timers{% endblock %}
{% block content %}
<h1 class="mb-3">Timers</h1>
{% if timers %}
<table class="table table-bordered table-striped">
<thead>
<tr>
<th class="text-center">#</th>
<th>Name</th>
<th>Message</th>
<th class="text-center">Interval</th>
<th class="text-center">Min Lines</th>
<th class="text-center">Status</th>
<th>Last Fired</th>
</tr>
</thead>
<tbody>
{% for timer in timers %}
<tr>
<td class="text-center">{{ timer.id }}</td>
<td>{{ timer.name }}</td>
<td>{{ timer.message }}</td>
<td class="text-center">{{ timer.interval }}</td>
<td class="text-center">{{ timer.min_lines }}</td>
<td class="text-center">{{ timer.status }}</td>
<td>{{ timer.last_fired }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p>No timers have been created yet.</p>
{% endif %}
{% endblock %}