{% extends 'base.html' %} {% block title %}Serveurs specifiques{% endblock %} {% block content %}

Serveurs specifiques ({{ entries|length }})

{% set msg = request.query_params.get('msg') %} {% if msg %}
{% if msg == 'saved' %}Specificites sauvegardees.{% elif msg == 'added' %}Serveur ajoute.{% elif msg == 'not_found' %}Hostname non trouve en base.{% elif msg == 'exists' %}Ce serveur a deja des specificites.{% endif %}
{% endif %}
Tous ({{ entries|length }}) {% for t in types_in_db %} {{ t }} {% endfor %}
{% for e in entries %} {% endfor %}
Hostname Type Domaine Env Flags Ordre Auto-restart Note Actions
{{ e.hostname }} {{ e.app_type or '-' }} {{ e.domaine or '-' }} {{ (e.environnement or '-')[:6] }}
{% if e.kernel_update_blocked %}K{% endif %} {% if e.is_cluster %}C{% endif %} {% if e.is_db %}DB{% endif %} {% if e.is_middleware %}MW{% endif %} {% if e.sentinel_disable_required %}S1{% endif %} {% if e.ip_forwarding_required %}IP{% endif %} {% if e.rolling_update %}RU{% endif %} {% if e.needs_manual_step %}M{% endif %} {% if e.extra_excludes %}EX{% endif %}
{% if e.reboot_order %}#{{ e.reboot_order }}{% if e.patch_order_group %} ({{ e.patch_order_group }}){% endif %}{% else %}-{% endif %} {{ 'Oui' if e.auto_restart else 'Non' }} {{ (e.note or '')[:80] }}{% if e.note and e.note|length > 80 %}...{% endif %}

Ajouter un serveur specifique

{% endblock %}