author | anoop |
Sat, 07 Aug 2010 13:45:34 +0530 | |
branch | anoop |
changeset 224 | daa76f68f4fc |
parent 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 /> |
|
165 | 9 |
Although we would be providing laptops, they are subject to availability and will be given on first come first serve basis. |
10 |
Hence we would be glad if you bring your own.<br /><br /> |
|
11 |
||
102 | 12 |
Are you bringing your own laptop:<br /> |
13 |
<form action="?email={{user.email}}" method=post> |
|
14 |
<ul> |
|
106 | 15 |
<li><input type=radio name="lap_status" value=True>Yes</li> |
16 |
<li><input type=radio name="lap_status" value=False>No</li> |
|
102 | 17 |
</ul> |
103
f874ddbd7952
the workshop participation confirmation page is complete
nishanth
parents:
102
diff
changeset
|
18 |
<input type=submit value="I confirm my participation in the Python workshop" /> |
94
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
19 |
</form> |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
20 |
{% endblock %} |
b38de804ff4d
created template for confirming workshop participation
nishanth
parents:
diff
changeset
|
21 |