templates/cnf_wsp_ptc.html
author nishanth
Fri, 16 Jul 2010 10:16:53 +0530
branchanoop
changeset 102 ef0012eb7695
parent 94 b38de804ff4d
child 103 f874ddbd7952
permissions -rw-r--r--
improvised the template of confirm participation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
     3
{% endblock %}
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
     4
{% block content %}
102
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     5
Dear {{user}}
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     6
Thank you for your interest in Python workshop.
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     7
<br /> <br />
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     8
Although we would be providing laptops for limited no.of participants, we would be glad if you bring your own.<br />
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     9
Are you bringing your own laptop:<br />
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    10
<form action="?email={{user.email}}" method=post>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    11
		<ul>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    12
				<li><input type=radio name="lap_status">Yes</li>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    13
				<li><input type=radio name="lap_status">No</li>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    14
		</ul>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    15
		<input type=submit value="I am attending the Python workshop" />
94
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    16
</form>
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    17
{% endblock %}
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    18