{% extends "base_template.html" %} {% import 'schema_info_macros.html' as schema_info_macros %} {% import 'validation_macros.html' as macros %} {% block title %}{{ section_title }} – {{ schema_info.title }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}
{{ _('Validation effectuée') }} {{ validation_date }}
{% if resource.type == 'file' %}
{{ resource.filename }}
{% elif resource.type == 'url' %}
{{resource.filename}}
{% endif %}
({{ report.stats.fields }} colonnes × {{ report.stats.rows }} lignes)
{% if report.stats.warnings == 1 %} {{ _('1 recommandation') }} {% else %} {{ report.warn_count }} {{ _('recommandations') }} {% endif %}
{% endif %} {% if report.stats.errors == 0 %}{{ _('Aucune erreur détectée') }}
{% else %} {{ macros.error_statistics(report) }}{% set error_count = report.stats.errors %} {{ _('Total') }} : {% if error_count == 1 %} {{ _('1 erreur détectée') }} {% else %} {{ error_count }} {{ _('erreurs détectées') }} {% endif %}
{% endif %}{{ _("Afin d'assurer la conformité optimale de vos données par rapport au schéma, merci de prendre en compte les recommandations ci-dessous") }} :
Prévisualisation du fichier source {% if not report.body_errors %} (affichage de {{ source_data.preview_rows_count }} ligne{% if source_data.preview_rows_count > 1 %}s{% endif %} sur {{ source_data.rows_nb }} au total) {% endif %}
{% if report.body_errors %} {{ macros.body_errors(report, source_data, print_mode) }} {% else %} {{ macros.preview(report, source_data) }} {% endif %}