{# Copyright (C) 2019 UCLouvain. Invenio-SIP2 is free software; you can redistribute it and/or modify it under the terms of the MIT License; see LICENSE file for more details. #} {%- extends config.SIP2_BASE_TEMPLATE %} {%- block page_body %}

{{ _('Automated circulation system monitoring') }}

Running servers:

{% for server in servers %} {% set clients = server.get_clients() %}

{{ server.name }}

host
{{ server.host }}
port
{{ server.port }}
state
{{ 'running' if server.running else 'down' }}
remote application
{{ server.remote_app }}
clients
{{ clients | length }}
{% if clients %}
    {% for client in clients %}
  • {{ client}}
  • {% endfor %}
{% endif %}
{% endfor %}
{%- endblock %}