diff --git a/validata_ui/templates/base_template.html b/validata_ui/templates/base_template.html index c041fa506deef18fdd07589f65cecb3b0e49d937..3a3f2460361ee166175c174e0e4ba126f633bebb 100644 --- a/validata_ui/templates/base_template.html +++ b/validata_ui/templates/base_template.html @@ -55,11 +55,8 @@ {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} -
+
{{ message }} -
{% endfor %} {% endif %} diff --git a/validata_ui/templates/home.html b/validata_ui/templates/home.html index 490e488521a9f8ab939d08d28ca2ce03e41ebc8b..7b29926a82279d11112bf40b906dba8692636a50 100644 --- a/validata_ui/templates/home.html +++ b/validata_ui/templates/home.html @@ -4,19 +4,19 @@ {{ super() }} {% endblock %} {% block content %} -

Validez vos jeux de données

+

Validez vos jeux de données

-
-
- {% for val in validators %} -
+
+ {% for val in validators %} +
+

{{ val.title }}

{{ val.description }}

Choisir
- {% endfor %}
+ {% endfor %}
{% endblock %} \ No newline at end of file diff --git a/validata_ui/templates/validation_form.html b/validata_ui/templates/validation_form.html index 5fce3925b8cf20dd20a42f43d7760a839e16518f..f23fa90f451eafa9c0bf41622f3d6434df0c00b9 100644 --- a/validata_ui/templates/validation_form.html +++ b/validata_ui/templates/validation_form.html @@ -4,7 +4,7 @@ {{ super() }} {% endblock %} {% block content %} -

Schéma « {{ title }} »

+

Schéma « {{ title }} »

{% set cols_my_classes = 'my-md-0 my-4' %}
diff --git a/validata_ui/templates/validation_report.html b/validata_ui/templates/validation_report.html index c1fc3db219bbfe51e639743911a5dfc33c05cab0..d48f1f0500de244d39f5d05e2a04d49726d8f4cd 100644 --- a/validata_ui/templates/validation_report.html +++ b/validata_ui/templates/validation_report.html @@ -24,7 +24,7 @@
{% endif %} -

{{ title }}

+

{{ title }}

Validation effectuée {{ validation_date }}

{% if print_mode %}
diff --git a/validata_ui/views.py b/validata_ui/views.py index 32f45768ae347d615ba0cf6df7e118c364cf2ebf..8ee9eff6de6329e3aa0d8e4caf2e5f878339b97e 100644 --- a/validata_ui/views.py +++ b/validata_ui/views.py @@ -263,7 +263,7 @@ def bytes_data(f): def home(): """ Home page """ validators = ValidatorHelper.schema_info_list() - flash_warning('Ce service est fourni en mode beta - certains problèmes peuvent subsister - nous mettons tout en œuvre pour améliorer son fonctionnement en continu') + flash_warning('Ce service est fourni en mode beta - certains problèmes peuvent subsister - nous mettons tout en œuvre pour améliorer son fonctionnement en continu.') return render_template('home.html', title='Accueil', validators=validators)