0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-08 14:40:05 +00:00
healthchecks_healthchecks/templates/checks/index.html
Pēteris Caune c8b24495b9 Renames
2015-06-12 19:33:15 +03:00

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 %}