templates/cnf_sgd_ptc.html
author nishanth
Sat, 17 Jul 2010 01:33:07 +0530
branchanoop
changeset 127 464b9fad6cb8
parent 126 98eb8dc364ba
child 128 16b3557b4260
permissions -rw-r--r--
improvised on template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     2
{% block title %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     3
Confirm Participation in Sage Days
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     4
{% endblock %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     5
{% block content %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     6
Dear {{user}}, <br /> <br />
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     7
Thank you for your interest in attending Sage Days.
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     8
<br /> <br />
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
     9
There are just a few more details we would like to know.<br />
125
92f77f8428e7 fixed a typo and improvised the template
nishanth
parents: 120
diff changeset
    10
<br />
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    11
Please fill the following details and confirm your participation.<br />
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    12
<form action="?email={{user.email}}" method=post>
126
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    13
		Will you bring your own laptop for Sage Days 25:
127
464b9fad6cb8 improvised on template
nishanth
parents: 126
diff changeset
    14
		<ul><li><input type="radio" name="has_laptop_for_sagedays" value="Yes" /> Yes </li>
464b9fad6cb8 improvised on template
nishanth
parents: 126
diff changeset
    15
		<li><input type="radio" name="has_laptop_for_sagedays" value="No" /> No </li></ul>
126
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    16
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    17
Have you participated in any kind of coding sprints:
127
464b9fad6cb8 improvised on template
nishanth
parents: 126
diff changeset
    18
<ul><li><input type="radio" name="sprinted_already" value="Yes" /> Yes </li>
464b9fad6cb8 improvised on template
nishanth
parents: 126
diff changeset
    19
		<li><input type="radio" name="sprinted_already" value="No" /> No </li></ul>
126
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    20
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    21
		<p><label for="id_will_sprint">Will you sprint:</label> <select name="will_sprint" id="id_will_sprint">
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    22
				<option value="3">Will sprint for sure</option>
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    23
				<option value="2">May sprint</option>
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    24
				<option value="1" selected="selected">Not my cup of tea</option>
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    25
		</select></p>
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    26
<input type=submit value="I confirm my participation in Sage Days 25" />
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    27
</form>
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    28
{% endblock %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    29