{% extends "base.html" %} {% block content %} {% comment %}
{% csrf_token %} {{ form }}
{% endcomment %}
{% csrf_token %} {{ form.non_field_errors }} The following information is required for anyone who registers:

{{ form.email.errors }} {{ form.email }}
{{ form.confirm_email.errors }} {{ form.confirm_email }}
{{ form.first_name.errors }} {{ form.first_name }}
{{ form.last_name.errors }} {{ form.last_name }}
{{ form.attendee_type.errors }} {{ form.attendee_type }}
{{ form.school.errors }} {{ form.school }}
{{ form.max_degree.errors }} {{ form.max_degree }}

The following is required only for students wishing to speak at the conference:

{{ form.is_submitting_talk.errors }} {{ form.is_submitting_talk }}
{{ form.paper_title.errors }} {{ form.paper_title }}
{{ form.paper_abstract.errors }}
{{ form.paper_abstract }}
{{ form.is_submitted_for_best_of_competition.errors }} {{ form.is_submitted_for_best_of_competition }}

The following is not required, but any student who wishes to provide relevant information is welcome to do so:

{{ form.sex.errors }} {{ form.sex }}
{{ form.year.errors }} {{ form.year }}
{{ form.size_of_institute.errors }} {{ form.size_of_institute }}

{{ form.dietary_restrictions.errors }}
{{ form.dietary_restrictions }}

{{ form.requires_housing.errors }} Our sponsors have graciously provided funds to host 40 out of town student visitors at the conference hotel. Please choose yes to indicate that you are requesting support for accommodations, otherwise, select no.

{{ form.requires_housing }}

{{ form.comments.errors }}
{{ form.comments }}

{% endblock %}