|
|
@ -7,29 +7,35 @@ |
|
|
|
{% block content %} |
|
|
|
<div class="row"> |
|
|
|
<div class="col-sm-12"> |
|
|
|
<h1>Log for {{ check.name|default:check.code }}</h1> |
|
|
|
<h1>Log for “{{ check.name|default:check.code }}”</h1> |
|
|
|
{% if pings %} |
|
|
|
<div class="table-responsive"> |
|
|
|
<table class="table table-striped log-table"> |
|
|
|
<tr> |
|
|
|
<th>Transport</th> |
|
|
|
<th>Time</th> |
|
|
|
<th>Remote IP</th> |
|
|
|
<th>Method</th> |
|
|
|
<th>User Agent</th> |
|
|
|
</tr> |
|
|
|
{% for ping in pings %} |
|
|
|
<tr> |
|
|
|
<td> |
|
|
|
{% if ping.scheme == "email" %} |
|
|
|
Email |
|
|
|
{% elif ping.scheme == "http" %} |
|
|
|
HTTP |
|
|
|
{% elif ping.scheme == "https" %} |
|
|
|
HTTPS |
|
|
|
{% endif %} |
|
|
|
</td> |
|
|
|
<td> |
|
|
|
<span |
|
|
|
data-toggle="tooltip" |
|
|
|
title="{{ ping.created }}"> |
|
|
|
{{ ping.created }} |
|
|
|
title="{{ ping.created }} GMT"> |
|
|
|
{{ ping.created|naturaltime }} |
|
|
|
</span> |
|
|
|
</td> |
|
|
|
<td class="remote-addr">{{ ping.remote_addr }}</td> |
|
|
|
<td class="method"> |
|
|
|
<span class="label label-default">{{ ping.method }}</span> |
|
|
|
</td> |
|
|
|
<td class="ua">{{ ping.ua }}</td> |
|
|
|
</tr> |
|
|
|
{% endfor %} |
|
|
@ -42,3 +48,10 @@ |
|
|
|
</div> |
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
{% block scripts %} |
|
|
|
{% compress js %} |
|
|
|
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script> |
|
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script> |
|
|
|
<script src="{% static 'js/log.js' %}"></script> |
|
|
|
{% endcompress %} |
|
|
|
{% endblock %} |