{% if description or header %}{% endif %}
{% if description %}
{{ description }}
|
{% endif %}
{% if header %}
{% for cell_text in header %}
{{ cell_text }} |
{% endfor %}
{% endif %}
{% if description or header %}{% endif %}
{% for row_data in body %}
{%for cell_text in row_data %}
{{ cell_text }} |
{% endfor %}
{% endfor %}