{% 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 pdf_report_url %} {% endif %}
{% if resource.type == 'file' %}
{{ resource.filename }}
{% elif resource.type == 'url' %}
{{resource.filename}}
{% endif %}
({{ report.table.col_count }} colonnes × {{ report.table.row_count }} lignes)
{% if report.warn_count == 1 %} 1 recommandation {% else %} {{ report.warn_count }} recommandations {% endif %}
{% endif %} {% if report.error_count == 0 %}Aucune erreur détectée
{% else %} {{ macros.error_statistics(report) }}{% set error_count = report.table['error-stats']['count'] %} 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.table.errors.body %} (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.table.errors.body %} {{ macros.body_errors(report, source_data, print_mode) }} {% else %} {{ macros.preview(report, source_data) }} {% endif %}