{% extends "hobo/base.html" %} {% load i18n %} {% block appbar %}

{% trans 'System' %}

{% endblock %} {% block content %} {% if services %}
{% for service in services %}

{{ service.title }} [{{service.slug}}, {{ service.base_url }}]

{% trans "checking..." %} {% if not service.is_operational and service.wants_frequent_checks %} {% endif %}

{% if service.legacy_urls %}

{% blocktrans trimmed count counter=service.legacy_urls|length %} Legacy URL {% plural %} Legacy URLs {% endblocktrans %}

{% endif %}
{% endfor %}
{% else %}
{% blocktrans trimmed %} This deployment doesn't have any service deployed yet. Click on the "Services" menu entry in the top right of the page to add a first one. {% endblocktrans %}
{% endif %} {% endblock %} {% block sidebar %} {% endblock %}