{% load i18n %} {% load statusboard %}

{% trans "Service status updates" %}

{% for notification in notifications %}
  • {{ notification.service.name }} {% if notification.from_status is None %} {% trans "created with status" %} {{ notification.to_status|service_get_status_display:"" }} {% else %} {% trans "from status" %} {{ notification.from_status|service_get_status_display:"" }} {% trans "to status" %} {{ notification.to_status|service_get_status_display:"" }} {% endif %}
  • {% endfor %} {% block footer %} {% endblock %}