diff --git a/validata_ui_next/templates/validation_report.html b/validata_ui_next/templates/validation_report.html index 5d8b7d6b699e9f8f1b88383d4d71d954c2e513a0..0fb3396e6322afa8cf031f37504d7118684074a2 100644 --- a/validata_ui_next/templates/validation_report.html +++ b/validata_ui_next/templates/validation_report.html @@ -55,23 +55,29 @@ {% if err.context == 'body' %} - - - - {% for h in report['tables'][0]['headers'] %} - - {% endfor %} - - - - - - {% for d in source_data.data_rows[err['row-number'] - 2] %} - +
+
#{{ h }}
{{ err['row-number'] - 1 }}{{ d }}
+ + + {% for h in report['tables'][0]['headers'] %} + {% endfor %} - - -
#{{ h }}
+ + + + + {{ err['row-number'] - 1 }} + {% for d in source_data.data_rows[err['row-number'] - 2] %} + {% if loop.index == err['column-number'] %} + {{ d }} + {% else %} + {{ d }} + {% endif %} + {% endfor %} + + + +

{{ err.message }}

{% endif %}