{% extends league_base %} {% load picker_tags %} {% block title %}Game picks{% endblock %} {% block main_content %}

My Weekly Picks

Week #{{ gameset.sequence }} {{ gameset.season }}

{% season_nav gameset "picks" %} {% if picks %}

Summary

Correct Picks: {{ picks.correct }}/{{ picks.gamepicks.count }} • Points: ±{{ picks.points_delta }} ({{ picks.points }} vs {{ gameset.points }})

{% for pick in picks.gamepicks.all %} {% with pick.is_correct as is_correct %} {% endwith %} {% endfor %}
Kickoff Away Home Result
{{ pick.game.start_time|date:"D P, M jS" }} {{ pick.game.away }} {{ pick.game.home }} {% if is_correct %} {% else %} {% endif %}
{% else %}

You have not registered picks for this gameset.

{% endif %} {% endblock %}