templates/cnf_wsp_ptc.html
author nishanth
Fri, 03 Sep 2010 16:23:17 +0530
branchanoop
changeset 241 ac1f13b2b3dc
parent 165 29e92b23e198
permissions -rw-r--r--
included the url
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 %}
103
f874ddbd7952 the workshop participation confirmation page is complete
nishanth
parents: 102
diff changeset
     3
Confirm Participation in Python Workshop
94
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
     4
{% endblock %}
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
     5
{% block content %}
103
f874ddbd7952 the workshop participation confirmation page is complete
nishanth
parents: 102
diff changeset
     6
Dear {{user}}, <br /> <br />
102
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     7
Thank you for your interest in Python workshop.
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
     8
<br /> <br />
165
29e92b23e198 updated email and template
nishanth
parents: 106
diff changeset
     9
Although we would be providing laptops, they are subject to availability and will be given on first come first serve basis.
29e92b23e198 updated email and template
nishanth
parents: 106
diff changeset
    10
Hence we would be glad if you bring your own.<br /><br />
29e92b23e198 updated email and template
nishanth
parents: 106
diff changeset
    11
102
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    12
Are you bringing your own laptop:<br />
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    13
<form action="?email={{user.email}}" method=post>
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    14
		<ul>
106
39b0b9a71778 confirm wsp_participation view is complete now
nishanth
parents: 103
diff changeset
    15
				<li><input type=radio name="lap_status" value=True>Yes</li>
39b0b9a71778 confirm wsp_participation view is complete now
nishanth
parents: 103
diff changeset
    16
				<li><input type=radio name="lap_status" value=False>No</li>
102
ef0012eb7695 improvised the template of confirm participation
nishanth
parents: 94
diff changeset
    17
		</ul>
103
f874ddbd7952 the workshop participation confirmation page is complete
nishanth
parents: 102
diff changeset
    18
		<input type=submit value="I confirm my participation in the Python workshop" />
94
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    19
</form>
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    20
{% endblock %}
b38de804ff4d created template for confirming workshop participation
nishanth
parents:
diff changeset
    21