{% load static %}
{{ formset.management_form }} {% csrf_token %}

{{ event.data.formatted_title }}

{{ event.data.start_date|date:"D, F j, Y g:i A" }}
Starting Lineup
{% with 'P C 1B 2B 3B SS LF CF RF EH DH' as position_list %} {% for position in position_list.split %}
{{ position }}
{% endfor %} {% endwith %}
{% include 'lineup/widgets/lineup_table.html' with formset=formset_startinglineup table_id="benchcoach-startinglineup" %}
Starting (Positional Only)
{% include 'lineup/widgets/lineup_table.html' with formset=formset_startingpositionalonly table_id="benchcoach-startingpositionalonly" %}
Bench
{% include 'lineup/widgets/lineup_table.html' with formset=formset_bench table_id="benchcoach-bench" %}
Out
{% include 'lineup/widgets/lineup_table.html' with formset=formset_out table_id="benchcoach-out" %}