Thanks for sharing, I have had a go at doing this today but doesnt seem to be working that great with championship. everything is on one line… (apologies immediately as I am learning this stuff as a play with it)
Can you assist. Supplied images/code to help
Pos | Team | P | W | D | L | GD | Pts
----+---------------------------+----+----+----+----+----+----
{% for row in state_attr('sensor.championship_standings','table') or [] -%}
{{- '{:>3}'.format(row.position) }} | {{ '{:<25}'.format(row.team.name[:25]) }} | {{ '{:>2}'.format(row.playedGames) }} | {{ '{:>2}'.format(row.won) }} | {{ '{:>2}'.format(row.draw) }} | {{ '{:>2}'.format(row.lost) }} | {{ '{:>2}'.format(row.goalDifference) }} | {{ '{:>3}'.format(row.points) }}
{%- endfor -%}