From 549695de4e5ebc317d6584134c389d062055fb18 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 13 Feb 2017 11:40:01 +0000 Subject: [PATCH] Add extra text to label rows for screenreaders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is mainly for the ‘check’ page where we show users the contents of their spreadsheet. > The structure of the table means that the first cell is treated as a > column header, so moving through columns in row 2 for example > associates the data 2 with 1 (column header) - this has no logical > meaning --- app/templates/components/table.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/components/table.html b/app/templates/components/table.html index 9b0eaf8bc..fef690fd0 100644 --- a/app/templates/components/table.html +++ b/app/templates/components/table.html @@ -73,7 +73,7 @@ {% macro index_field(text) -%} - {{ text }} + Row {{ text }} {%- endmacro %}