{% with messages = get_flashed_messages() %} {% if messages %}
Player Number |
{% elif column['Field'] == "playerName" %}
Player Name |
{% elif column['Field'] == "appearances" %}
Appearances |
{% elif column['Field'] == "goals" %}
Goals |
{% elif column['Field'].startswith('22381goal') %}
NBC A goals |
{% else %}
{%- for match in matchesList %}
{% if column['Field'].startswith(match) %}
{% if column['Field'].endswith('played') %}
{{ matches[match] }} Played |
{% elif column['Field'].endswith('goals') %}
{{ matches[match] }} Goals |
{% elif column['Field'].endswith('capt') %}
{{ matches[match] }} Captain |
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{%- endfor %}
{%- for row in rows %}
|---|
| {{ row[column['Field']] }} | {%- endfor %}