equal
deleted
inserted
replaced
|
1 {% extends 'base.html' %} |
|
2 {% block title %} |
|
3 Confirm Participation in Sage Days |
|
4 {% endblock %} |
|
5 {% block content %} |
|
6 Dear {{user}}, <br /> <br /> |
|
7 Thank you for your interest in attending Sage Days. |
|
8 <br /> <br /> |
|
9 There are just a few more details we would like to know.<br /> |
|
10 Please fill the following details and confirm your participation.<br /> |
|
11 <br /> |
|
12 <form action="?email={{user.email}}" method=post> |
|
13 {{form.as_p}} |
|
14 <input type=submit value="I confirm my participation in Sage Days 25" /> |
|
15 </form> |
|
16 {% endblock %} |
|
17 |