{% extends 'base.html.twig' %} {% block title %}Rapport DNS - SARL SITECONSEIL{% endblock %} {% block header %}
CRM SITECONSEIL
{% endblock %} {% block body %}

Rapport de configuration DNS

Genere le {{ date|date('d/m/Y H:i:s') }} par Esy-Infra

{# ─── Resume ─── #}

{{ successes|length }}

Verifications OK

{% if errors|length > 0 %}

{{ errors|length }}

Erreurs

{% endif %} {% if warnings|length > 0 %}

{{ warnings|length }}

Avertissements

{% endif %}
{# ─── Detail par domaine ─── #} {% for domainData in domainResults %}

{{ domainData.domain }}

{% for check in domainData.checks %} {% endfor %}
Source Verification Attendu Dig (actuel) Cloudflare Statut
{{ check.type }} {{ check.label }} {{ check.expected|default('—') }} {{ check.dig|default('—') }} {{ check.cloudflare|default('—') }} {% if check.status == 'ok' %} {% elseif check.status == 'error' %} {% else %} {% endif %}
{% endfor %} {# ─── Erreurs detaillees ─── #} {% if errors|length > 0 %}

Erreurs a corriger

    {% for error in errors %}
  • ✗ {{ error }}
  • {% endfor %}
{% endif %} {% if warnings|length > 0 %}

Avertissements

    {% for warning in warnings %}
  • ⚠ {{ warning }}
  • {% endfor %}
{% endif %}

Rapport par Esy-Infra - Service de monitoring d'infra

{% endblock %}