Test_Johanne/a1_en_p1_quest_v2/templates/a1_en_p1_quest_v2/Questionnaire1.html
2025-03-06 10:33:03 +01:00

150 lines
4.2 KiB
HTML

<head>
<style>
.hide {
display: none;
}
</style>
<title></title>
</head>
{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Questionnaire (2/3)
{% endblock %}
{% block content %}
<div class="card bg-light m-3">
<div class="card-body">
<p>
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.
<p>
The questions in this section relate to your habits as a student, i.e. they do not refer to the facilities in your accommodation prior to building 103. On the other hand, the "you" refers to yourself, and not to all the residents of your flat if it is a shared flat.
</p>
<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) Do you regularly defrost the fridge? </b></p>
<input type="radio" name="q_16" value="1" onclick="show102();" />1 - Never <div id="div10" class="hide">
<hr>
<p> &nbsp &nbsp &nbsp &nbsp <input type="radio" name="q_16_a" value="1" />a - Because I bought a frost free fridge on purpose <br>
&nbsp &nbsp &nbsp &nbsp <input type="radio" name="q_16_a" value="2" />b - I share the refrigerator with other people and someone else is responsible for it <br>
&nbsp &nbsp &nbsp &nbsp <input type="radio" name="q_16_a" value="3" />c - Other reason <br>
&nbsp &nbsp &nbsp &nbsp <i>(If other reason please specify) </i> : <input name="q_16_b" value="" onclick="show103();" /><br>
</p>
</div> <br>
<input type="radio" name="q_16" value="2" onclick="show101();" />2 - Rarely <br>
<input type="radio" name="q_16" value="3" onclick="show101();" />3 - Often <br>
<input type="radio" name="q_16" value="4" onclick="show101();" />4 - Always <br>
<br> <br>
<p>
<b>17) Suppose you are about to book a taxi (e.g. UBER) to Orly airport.
<br> Which option would you choose?
</b>
{% formfield player.q_17 %}
</p>
<p>
<b>18) 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_18 %} </td>
<td> Strongly agree</td>
</tr>
</table>
</p>
<p>
<b>19) 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_19_p2 %} </td>
<td> Strongly agree</td>
</tr>
</table>
</p>
<p>
<b>20) 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_20 %}
</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 %}