equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block title %} |
2 {% block title %} |
|
3 Confirm Participation in Python Workshop |
3 {% endblock %} |
4 {% endblock %} |
4 {% block content %} |
5 {% block content %} |
5 Dear {{user}} |
6 Dear {{user}}, <br /> <br /> |
6 Thank you for your interest in Python workshop. |
7 Thank you for your interest in Python workshop. |
7 <br /> <br /> |
8 <br /> <br /> |
8 Although we would be providing laptops for limited no.of participants, we would be glad if you bring your own.<br /> |
9 Although we would be providing laptops, they are subject to availability and will be given on first come first serve basis.<br /> |
|
10 Hence we would be glad if you bring your own, if you have one.<br /><br /> |
9 Are you bringing your own laptop:<br /> |
11 Are you bringing your own laptop:<br /> |
10 <form action="?email={{user.email}}" method=post> |
12 <form action="?email={{user.email}}" method=post> |
11 <ul> |
13 <ul> |
12 <li><input type=radio name="lap_status">Yes</li> |
14 <li><input type=radio name="lap_status">Yes</li> |
13 <li><input type=radio name="lap_status">No</li> |
15 <li><input type=radio name="lap_status">No</li> |
14 </ul> |
16 </ul> |
15 <input type=submit value="I am attending the Python workshop" /> |
17 <input type=submit value="I confirm my participation in the Python workshop" /> |
16 </form> |
18 </form> |
17 {% endblock %} |
19 {% endblock %} |
18 |
20 |