author | nishanth |
Sat, 17 Jul 2010 01:47:13 +0530 | |
branch | anoop |
changeset 130 | 384049c3bcb8 |
parent 129 | b5dfde8e43a9 |
child 141 | ee39807aa6c8 |
permissions | -rw-r--r-- |
120
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
3 |
Confirm Participation in Sage Days |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
6 |
Dear {{user}}, <br /> <br /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
7 |
Thank you for your interest in attending Sage Days. |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
8 |
<br /> <br /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
9 |
There are just a few more details we would like to know.<br /> |
125 | 10 |
<br /> |
128 | 11 |
Please fill the following details and confirm your participation<br /> |
12 |
<br /> |
|
120
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
13 |
<form action="?email={{user.email}}" method=post> |
126 | 14 |
Will you bring your own laptop for Sage Days 25: |
130 | 15 |
<ul><li><input type="radio" name="has_laptop_for_sagedays" value="Yes" /> Yes </li> |
16 |
<li><input type="radio" name="has_laptop_for_sagedays" value="No" /> No </li></ul> |
|
126 | 17 |
|
18 |
Have you participated in any kind of coding sprints: |
|
127 | 19 |
<ul><li><input type="radio" name="sprinted_already" value="Yes" /> Yes </li> |
20 |
<li><input type="radio" name="sprinted_already" value="No" /> No </li></ul> |
|
126 | 21 |
|
22 |
<p><label for="id_will_sprint">Will you sprint:</label> <select name="will_sprint" id="id_will_sprint"> |
|
23 |
<option value="3">Will sprint for sure</option> |
|
24 |
<option value="2">May sprint</option> |
|
25 |
<option value="1" selected="selected">Not my cup of tea</option> |
|
26 |
</select></p> |
|
120
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
27 |
<input type=submit value="I confirm my participation in Sage Days 25" /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
28 |
</form> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
29 |
{% endblock %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
30 |