{% extends 'base.html' %} {% block title %}Résultats Déploiement{% endblock %} {% block content %}

Résultats du déploiement

{{ total }} serveur(s) traité(s)

Retour
{{ total }}
Total
{% if active is defined %}
{{ active }}
Actifs
{{ not_installed }}
Non installés
{% else %}
{{ ok }}
Succès
{{ failed }}
Échecs
{% endif %}
{% if results and results[0].version is defined %} {% endif %} {% for r in results %} {% if r.version is defined %} {% endif %} {% endfor %}
Hostname Statut DétailVersion Service
{{ r.hostname }} {% if r.status == 'SUCCESS' or r.status == 'ACTIVE' %} {{ r.status }} {% elif r.status == 'ALREADY_INSTALLED' %} DÉJÀ INSTALLÉ {% elif r.status == 'NOT_INSTALLED' %} NON INSTALLÉ {% elif r.status == 'INACTIVE' %} INACTIF {% else %} {{ r.status }} {% endif %} {{ r.detail or r.get('detail', '') }}{{ r.version or '-' }} {{ r.service_status or '-' }}
{% if log_lines %}

Log détaillé

{% for line in log_lines %}{{ line }} {% endfor %}
{% endif %} {% endblock %}