equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
1 {% extends 'base.html' %} |
2 {% block title %} |
2 {% block title %} |
3 {% endblock %} |
3 {% endblock %} |
4 {% block content %} |
4 {% block content %} |
5 <form action="?email={{email}}" method=post> |
5 Dear {{user}} |
6 {{email}} |
6 Thank you for your interest in Python workshop. |
7 <input type=submit value=go /> |
7 <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 Are you bringing your own laptop:<br /> |
|
10 <form action="?email={{user.email}}" method=post> |
|
11 <ul> |
|
12 <li><input type=radio name="lap_status">Yes</li> |
|
13 <li><input type=radio name="lap_status">No</li> |
|
14 </ul> |
|
15 <input type=submit value="I am attending the Python workshop" /> |
8 </form> |
16 </form> |
9 {% endblock %} |
17 {% endblock %} |
10 |
18 |