author | nishanth |
Sat, 17 Jul 2010 01:01:29 +0530 | |
branch | anoop |
changeset 120 | f9408ab30ace |
child 125 | 92f77f8428e7 |
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 /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
10 |
Please fill the following details and confirm your participation.<br /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
11 |
<br /> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
12 |
<form action="?email={{user.email}}" method=post> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
13 |
{{form.as_p}} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
14 |
<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
|
15 |
</form> |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
16 |
{% endblock %} |
f9408ab30ace
created the basic view and template for confirming participation in sage days
nishanth
parents:
diff
changeset
|
17 |