{% if header %}
{% for cell in header %}
{{ cell }} A|V |
{% endfor %}
{% endif %}
{% if table %}
{% for row in table %}
{% for cell in row %}
{{ cell }}
|
{% endfor %}
{% endfor %}
{% endif %}
{% if footer %}
{% for cell in footer %}
{{ cell }} |
{% endfor %}
{% endif %}