168 lines
4.3 KiB
HTML
168 lines
4.3 KiB
HTML
<head>
|
|
<style>
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|
|
|
|
</style>
|
|
<title></title>
|
|
</head>
|
|
|
|
{% extends "global/Page.html" %}
|
|
{% load otree %}
|
|
|
|
{% block title %}
|
|
Questionnaire (2/4)
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
The answers to the following questions will not be taken into account when calculating your winnings.
|
|
However, we ask that you answer as honestly as possible. As a reminder, all your answers will
|
|
be treated anonymously, and no one will have access to your answers.
|
|
|
|
<br><br>
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
<p>
|
|
<b>12) When buying new electronic devices, do you make sure to buy the ones that use the least amount of energy? </b>
|
|
{% formfield player.q_12 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>13) Do you switch off or completely disconnect electrical devices when not in use (without using the
|
|
standby mode)? </b>
|
|
{% formfield player.q_13 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>14) Do you use a dryer for your clothes? </b>
|
|
{% formfield player.q_14 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>15) Do you wait until you have a full charge before doing your laundry? </b>
|
|
{% formfield player.q_15 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>16) Is the heating in your home turned off late at night between 1 am and 5 am (in winter)? </b>
|
|
{% formfield player.q_16 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>17) Do you reduce the room temperature when you are not at home for a long time (in winter)? </b>
|
|
{% formfield player.q_17 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>18)
|
|
You take a shower rather than a bath
|
|
</b>
|
|
|
|
{% formfield player.q_18 %}
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p><b> 19) Do you regularly defrost the fridge? </b></p>
|
|
|
|
<input type="radio" name="q_19" value="1" onclick="show102();" />1 - Never <div id="div10" class="hide">
|
|
<hr>
|
|
<p>         <input type="radio" name="q_19_a" value="1" />a - Because I bought a frost free fridge on purpose <br>
|
|
        <input type="radio" name="q_19_a" value="2" />b - I share the refrigerator with other people and someone else is responsible for it <br>
|
|
        <input type="radio" name="q_19_a" value="3" />c - Other reason <br>
|
|
        <i>(If other reason please specify) </i> : <input name="q_19_b" value="" onclick="show103();" /><br>
|
|
|
|
</p>
|
|
</div> <br>
|
|
<input type="radio" name="q_19" value="2" onclick="show101();" />2 - Rarely <br>
|
|
<input type="radio" name="q_19" value="3" onclick="show101();" />3 - Often <br>
|
|
<input type="radio" name="q_19" value="4" onclick="show101();" />4 - Always <br>
|
|
|
|
<br> <br>
|
|
|
|
|
|
<p>
|
|
<b>20) Suppose you are about to book a taxi (e.g. UBER) to Orly airport.
|
|
<br> Which option would you choose?
|
|
</b>
|
|
{% formfield player.q_20 %}
|
|
</p>
|
|
|
|
<p>
|
|
<b>21) Electric cars are less polluting than petrol or diesel cars.</b>
|
|
<br> <i><b> (Indicate your degree of agreement)</b></i>
|
|
<table class='table text-left' style='width: auto; margin: auto'>
|
|
<tr>
|
|
<td> Strongly disagree </td>
|
|
<td> {% formfield player.q_21 %} </td>
|
|
<td> Strongly agree</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
<p>
|
|
<b>22) Would you be interested in buying an alternative fuel car?</b>
|
|
|
|
<table class='table text-left' style='width: auto; margin: auto'>
|
|
<tr>
|
|
<td> Strongly disagree </td>
|
|
<td> {% formfield player.q_22_p2 %} </td>
|
|
<td> Strongly agree</td>
|
|
</tr>
|
|
</table>
|
|
</p>
|
|
|
|
<p>
|
|
<b>23) Do you adopt eco-responsible driving? </b>
|
|
<br>
|
|
<i>
|
|
Eco-responsible driving consists of: Checking the tire pressure.
|
|
Make sure the vehicle is in good condition. Adopt a smooth driving
|
|
(Start smoothly and change without waiting for a higher gear to
|
|
avoid over-revs). Stop the engine during a prolonged stop. Do not
|
|
abuse the air conditioning.
|
|
</i>
|
|
{% formfield player.q_23 %}
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{% next_button %}</p>
|
|
|
|
</div></div>
|
|
|
|
</div></div>
|
|
|
|
{% endblock %}
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
|
<script>
|
|
|
|
function show101(){
|
|
document.getElementById('div10').style.display ='none';
|
|
}
|
|
function show102(){
|
|
document.getElementById('div10').style.display = 'block';
|
|
}
|
|
function show103(){
|
|
document.getElementById('div10').style.display ='none';
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endblock %} |