{% extends league_base %} {% block title %}Picks Management{% endblock %} {% block main_content %}

Manage Picks: Week {{ gameset.sequence }}, {{ gameset.season }}

{% load bootstrap3 picker_tags %} {% all_seasons_nav season league "manage" %} {% season_nav gameset "manage" %} {% if form.errors %}

Please fix the errors below:

{% endif %}
{% csrf_token %}
Weekly Results
{% for field in form.game_fields %}{% with field.field.game as gm %} {% endwith %}{% endfor %}
Start Time Away vs. Home TV
{% if field.field.is_game %}{% with field.field.game.start_time as dt %} {{ dt|date:"M jS, Y"}} {{ dt|date:"D, P" }} {% endwith %}{% else %}{{ field.label }} {% endif %} {% if field.errors %} {{ field.errors }} {% endif %}
{{ field }}
{{ field.help_text }}
{% if form.points.errors %}

{{ form.points.errors }}

{% endif %} {% bootstrap_field form.points %} {% buttons %} {% endbuttons %}
{% endblock %}