{% extends 'base.html' %} {% block title %}Résultats Déploiement{% endblock %} {% block content %}
{{ total }} serveur(s) traité(s)
| Hostname | Statut | Détail | {% if results and results[0].version is defined %}Version | Service | {% endif %}
|---|---|---|---|---|
| {{ 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', '') }} | {% if r.version is defined %}{{ r.version or '-' }} | {{ r.service_status or '-' }} | {% endif %}