changed confirmation dates to be sent to late registration people.
{% extends 'base.html' %}
{% block title %}
Confirm Participation in Sage Days
{% endblock %}
{% block content %}
Dear {{user}}, <br /> <br />
Thank you for your interest in attending Sage Days.
<br /> <br />
There are just a few more details we would like to know.<br />
<br />
Please fill the following details and confirm your participation<br />
<br />
<form action="?email={{user.email}}" method=post>
Will you bring your own laptop for Sage Days 25:
<ul><li><input type="radio" name="has_laptop_for_sagedays" value="Yes" /> Yes </li>
<li><input type="radio" name="has_laptop_for_sagedays" value="No" /> No </li></ul>
<p><label for="id_will_sprint">Will you sprint:
<sup><a href="/sage_days/what_is_sprint">What is a sprint</a></sup><br /></label> <select name="will_sprint" id="id_will_sprint">
<option value="3">Will sprint for sure</option>
<option value="2">May sprint</option>
<option value="1" selected="selected">Not my cup of tea</option>
</select></p>
Have you participated in any kind of coding sprints:
<ul><li><input type="radio" name="sprinted_already" value="Yes" /> Yes </li>
<li><input type="radio" name="sprinted_already" value="No" /> No </li></ul>
<input type=submit value="I confirm my participation in Sage Days 25" />
</form>
{% endblock %}