mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-08 14:40:05 +00:00
23 lines
No EOL
438 B
HTML
23 lines
No EOL
438 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<h1>Hello World</h1>
|
|
<table class="table">
|
|
<tr>
|
|
<th>Code</th>
|
|
<th>Last Ping</th>
|
|
</tr>
|
|
{% for check in checks %}
|
|
<tr>
|
|
<td>{{ check.code }}</td>
|
|
<td>{{ check.last_ping }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %} |