{% extends "base.html" %} {% block content %}

{{ service.name }}

{{ service.description }}

{% if start_date %}

{{ start_date|date:"n/j/Y" }}

{% endif %} {% if events %} {% for e in events %} {% if e.informational %} {% else %} {% endif %} {% endfor %}
Time Status Message
{{ e.start|timesince }} agoInformation {{ e.message }}{{ e.status.name }} {{ e.message }}
{% else %}
Up {% if start_date %}

No events here! The service was up and running for this time range.

{% else %}

No strange events, this service is up and running smoothly.

{% endif %}
{% endif %} {% include "_legend.html" %} {% endblock %}