I have this:
{% for row in data: %}
<td
{{'value={{row['value']}}' if 'showit' in map and header in map['showit'] and 'value' in row}}
> ... </td>
{% endfor %}
But obviously that's not working. Trying to add an HTML attribute to the cell using a secondary column in the row dict. Any thoughts?