templates/cnf_sgd_ptc.html
author nishanth
Sat, 17 Jul 2010 01:42:30 +0530
branchanoop
changeset 128 16b3557b4260
parent 127 464b9fad6cb8
child 129 b5dfde8e43a9
permissions -rw-r--r--
added the new object creation to the view

{% 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>

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>

		<p><label for="id_will_sprint">Will you sprint:</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>
<input type=submit value="I confirm my participation in Sage Days 25" />
</form>
{% endblock %}