{% extends "usta/base.html" %} {% load staticfiles %} {% block title %}{{ block.super }} | Alumni Reunion{% endblock %} {% block main %}

Nats Alumni Questionnaire

There will be a Tournament Reunion in {{ year }}.

{% csrf_token %} {% include 'common/field_as_row.html' with field=form.name %} {% include 'common/field_as_row.html' with field=form.email %} {% include 'common/field_as_row.html' with field=form.years_played %} {% include 'common/field_as_row.html' with field=form.college_career two_rows=True %} {% include 'common/field_as_row.html' with field=form.professional_career two_rows=True %} {% include 'common/field_as_row.html' with field=form.doing_now two_rows=True %} {% include 'common/field_as_row.html' with field=form.interested_reunion two_rows=True %}
{% comment %}
{% csrf_token %} {{ form.non_field_errors }} {% include 'usta/form_field.html' with field=form.name singleline=True %} {% include 'usta/form_field.html' with field=form.email singleline=True %} {% include 'usta/form_field.html' with field=form.years_played singleline=True %}
Tennis career after the Nats: {% include 'usta/form_field.html' with field=form.college_career %} {% include 'usta/form_field.html' with field=form.professional_career %}
{% include 'usta/form_field.html' with field=form.doing_now %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %}
{% include 'usta/form_field.html' with field=form.interested_reunion %}
{% endcomment %} {% endblock %}