From 41b278359c83153ad4ec01c3ba21c9d0e4907e4a Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 10 Mar 2016 12:10:17 +0000 Subject: [PATCH] Start row numbers from 2 Because row 1 will be the column headers when you look at a CSV file in Excel. --- app/templates/views/check.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/check.html b/app/templates/views/check.html index 13b9e86a3..5190ac4b5 100644 --- a/app/templates/views/check.html +++ b/app/templates/views/check.html @@ -74,10 +74,10 @@ {% call(item) list_table( recipients.rows_annotated_and_truncated, caption=original_file_name, - field_headings=['Row'] + recipients.column_headers_with_placeholders_highlighted + field_headings=['1'] + recipients.column_headers_with_placeholders_highlighted ) %} {% call field() %} - {{ item.index + 1 }} + {{ item.index + 2 }} {% endcall %} {% for column in recipients.column_headers %} {% if item[column].error %}