templates/cnf_wsp_ptc.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 06 Aug 2010 15:11:47 +0530
branchanoop
changeset 221 b0fd3cb56e0b
parent 165 29e92b23e198
permissions -rw-r--r--
Modified template if tags to be compliant with Django 1.1 and not 1.2.

{% extends 'base.html' %}
{% block title %}
Confirm Participation in Python Workshop
{% endblock %}
{% block content %}
Dear {{user}}, <br /> <br />
Thank you for your interest in Python workshop.
<br /> <br />
Although we would be providing laptops, they are subject to availability and will be given on first come first serve basis.
Hence we would be glad if you bring your own.<br /><br />

Are you bringing your own laptop:<br />
<form action="?email={{user.email}}" method=post>
		<ul>
				<li><input type=radio name="lap_status" value=True>Yes</li>
				<li><input type=radio name="lap_status" value=False>No</li>
		</ul>
		<input type=submit value="I confirm my participation in the Python workshop" />
</form>
{% endblock %}