{% extends 'base/layout.html' %} {% load i18n %} {% block title %}{% trans "Application view" %}{% endblock %} {% block content %}

{% trans "Application view" %}

{% trans "Referential applications with their servers and facilities" %}
{% if not groups %}
{% trans "No application matches these criteria." %}
{% endif %}
{% for group in groups %}

{{ group.name }}

{% if group.is_multi_site %}{% trans "Multi-site" %}{% endif %} {% if group.has_critical %}{% trans "Critical" %}{% endif %} {{ group.servers|length }} {% trans "servers" %}
{{ group.sites|join:' · '|default:_('No business attachment') }}
{% if group.servers %} {% for server in group.servers %} {% endfor %}
{% trans "Server" %}{% trans "Type" %}{% trans "IP" %}{% trans "Role" %}
{{ server.obj.name }} {{ server.kind }} {{ server.ip|default:'—' }} {{ server.role|default:'—' }}
{% else %}
{% trans "No attached server" %}
{% endif %}
{% endfor %}
{% endblock %}