Add extra text to label rows for screenreaders

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
This commit is contained in:
Chris Hill-Scott
2017-02-13 11:40:01 +00:00
parent 911617fb03
commit 549695de4e

View File

@@ -73,7 +73,7 @@
{% macro index_field(text) -%}
<td class="table-field-index">
<span>{{ text }}</span>
<span><span class="visually-hidden">Row </span>{{ text }}</span>
</td>
{%- endmacro %}