2015-06-12 20:49:35 +03:00

23 lines
457 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<h1>Hello {{ request.user.email }}</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 %}