author | nishanth |
Wed, 21 Jul 2010 12:17:20 +0530 | |
branch | anoop |
changeset 147 | 76935f280a4d |
parent 106 | 39b0b9a71778 |
child 165 | 29e92b23e198 |
permissions | -rw-r--r-- |
94
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
103
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
3 |
Confirm Participation in Python Workshop |
94
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
103
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
6 |
Dear {{user}}, <br /> <br /> |
102 | 7 |
Thank you for your interest in Python workshop. |
8 |
<br /> <br /> |
|
103
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
9 |
Although we would be providing laptops, they are subject to availability and will be given on first come first serve basis.<br /> |
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
10 |
Hence we would be glad if you bring your own, if you have one.<br /><br /> |
102 | 11 |
Are you bringing your own laptop:<br /> |
12 |
<form action="?email={{user.email}}" method=post> |
|
13 |
<ul> |
|
106 | 14 |
<li><input type=radio name="lap_status" value=True>Yes</li> |
15 |
<li><input type=radio name="lap_status" value=False>No</li> |
|
102 | 16 |
</ul> |
103
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
17 |
<input type=submit value="I confirm my participation in the Python workshop" /> |
94
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
18 |
</form> |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
19 |
{% endblock %} |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
20 |