{% extends 'layout.html' %} {% block title %}{{ displayName }}{% endblock %} {% block content %}

{{ displayName }}

back

{% if startDate and endDate %}

{{ startDate }} - {{ endDate }}

{% endif %} {% if description %}

{{ description }}

{% endif %}

Current Standings

{% for row in standings %} {% endfor %}
Player Played Wins For Against Diff
{{ loop.index }} {{ row.name }} {{ row.played }} {{ row.wins }} {{ row.for }} {{ row.against }} {{ row.diff }}

All Results ({{ resultsTotal }})

{% if allResults.length %} {% for dateRow in allResults %}

{{ dateRow.date }}

{% for row in dateRow.results %}

{{ row.winner }} beat {{ row.loser }} {{ row.score }}

{% endfor %} {% endfor %} {% else %}

No results yet

{% endif %}
{% for breakdown in playerBreakdowns %} {% endfor %} {% endblock %}