templates/cnf_sgd_ptc.html
author nishanth
Fri, 03 Sep 2010 16:23:17 +0530
branchanoop
changeset 241 ac1f13b2b3dc
parent 141 ee39807aa6c8
permissions -rw-r--r--
included the url
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 />
128
16b3557b4260 added the new object creation to the view
nishanth
parents: 127
diff changeset
    11
Please fill the following details and confirm your participation<br />
16b3557b4260 added the new object creation to the view
nishanth
parents: 127
diff changeset
    12
<br />
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    13
<form action="?email={{user.email}}" method=post>
126
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    14
		Will you bring your own laptop for Sage Days 25:
141
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    15
130
384049c3bcb8 fixed a typo
nishanth
parents: 129
diff changeset
    16
		<ul><li><input type="radio" name="has_laptop_for_sagedays" value="Yes" /> Yes </li>
384049c3bcb8 fixed a typo
nishanth
parents: 129
diff changeset
    17
		<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
    18
141
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    19
		<p><label for="id_will_sprint">Will you sprint:     
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    20
           <sup><a href="/sage_days/what_is_sprint">What is a sprint</a></sup><br /></label> <select name="will_sprint" id="id_will_sprint">
126
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    21
				<option value="3">Will sprint for sure</option>
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    22
				<option value="2">May sprint</option>
98eb8dc364ba now form is not rendered via form.as_p
nishanth
parents: 125
diff changeset
    23
				<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
    24
		</select></p>
141
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    25
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    26
Have you participated in any kind of coding sprints:
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    27
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    28
<ul><li><input type="radio" name="sprinted_already" value="Yes" /> Yes </li>
ee39807aa6c8 included the link ffor what is sprint
nishanth
parents: 130
diff changeset
    29
		<li><input type="radio" name="sprinted_already" value="No" /> No </li></ul>
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    30
<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
    31
</form>
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    32
{% endblock %}
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents:
diff changeset
    33