Put error flag on whole row

We’ve seen people miss errors if they’re in the right-hand columns of
the spreadsheet because people’s eyes scan down the left edge of the
table.
This commit is contained in:
Chris Hill-Scott
2017-05-23 14:21:59 +01:00
parent 1c1c5bd758
commit ad5fc9a583
3 changed files with 9 additions and 5 deletions

View File

@@ -73,9 +73,9 @@
</th>
{%- endmacro %}
{% macro index_field(text) -%}
{% macro index_field(text=None) -%}
<td class="table-field-index">
<span>{{ text }}</span>
{{ text if text != None else caller() }}
</td>
{%- endmacro %}