{% extends "base_template.html" %} {% block title %}{{ title }}{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %} {% if print_mode %}
Validation effectuée {{ validation_date }}
{% if print_mode %}
{% if val_info.author %}
Auteur : {{ val_info.author }}
{% endif %}
{% if val_info.contributor %}
Contributeur(s) : {{ val_info.contributor }}
{% endif %}
Source
{% if source_type == 'file' %}
(fichier) : {{ source.name }}
{% endif %}
{% if source_type == 'url' %}
(URL) :
{% if print_mode %}
{{source.name}}
{% else %}
{{source.name | truncate(60)}}
{% endif %}
{% endif %}
Dimensions : {{ report.table.col_count }} colonnes et {{ report.table.row_count }}
lignes
Aucune erreur détectée
{{ macros.preview(source_data) }} {% else %}{{ report.table['error-stats']['total'] }} erreur(s) détectée(s).
{{ macros.error_statistics(report) }} {% if report.table.errors.structure %}Aucune erreur de structure
{% endif %} {# We do display body errors! #} {% if report.table.do_display_body_errors %}Aucune erreur de contenu
{{ macros.preview(source_data) }} {% else %} {# display errors #} {{ macros.body_errors(report, source_data) }} {% endif %} {# do not display errors #} {% else %}Veuillez corriger ce(s) erreur(s) pour visualiser les éventuels problèmes de contenu.
{% endif %} {% endif %} {% endblock %} {% block footer %} {% endblock %}