{% extends "base.html" %} {% load compress humanize static hc_extras %} {% block title %}Ping Log - {{ site_name }}{% endblock %} {% block content %}
#{{ event.n }} | {% if event.exitstatus %} Status {{ event.exitstatus }} {% elif event.kind == "fail" %} Failure {% elif event.kind == "start" %} Started {% elif event.kind == "ign" %} Ignored {% else %} OK {% endif %} |
{% if event.delta %}
{{ event.delta|hms }}
{% endif %}
{% if event.scheme == "email" %}
{{ event.ua }}
{% if event.body %}
- {{ event.body|truncatechars:150 }}
{% endif %}
{% else %}
{{ event.scheme|upper }}
{{ event.method }}
{% if event.remote_addr %}
from {{ event.remote_addr }}
{% endif %}
{% if event.ua %}
- {{ event.ua }}
{% endif %}
{% if event.body %}
- {{ event.body|truncatechars:150 }}
{% endif %}
{% endif %}
|
||
{% include "front/event_summary.html" %} |
Showing last {{ limit }} pings. Want to see more? Upgrade your account!
{% endif %}