Test_Johanne/exp_e4c_en_p1_quest/templates/exp_e4c_en_p1_quest/Questionnaire0.html

228 lines
6.8 KiB
HTML
Raw Normal View History

2025-03-06 10:28:01 +01:00
<head>
<style>
.hide {
display: none;
}
</style>
<title></title>
</head>
{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Questionnaire (1/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>1)
Do you buy organic and / or ecological products?
</b>
{% formfield player.q_1 %}
</p>
<br>
<p>
<b> 2) For each of the following criteria, please indicate if it can influence your choice to buy a product:
</b>
<table class='table text-left' style='width: auto; margin: auto'>
<tr>
<td colspan=3><b>a. The price</b> can influence your choices of products to buy </td>>
</tr>
<tr>
<td> Strongly disagree </td>
<td> {% formfield player.q_2_a %} </td>
<td> Strongly agree</td>
</tr>
<tr>
<td colspan=3><b>b. The origin</b> can influence your choices of products to buy </td>>
</tr>
<tr>
<td> Strongly disagree </td>
<td> {% formfield player.q_2_b %} </td>
<td> Strongly agree</td>
</tr>
<tr>
<td colspan=3><b>c. The quality</b> can influence your choices of products to buy </td>
</tr>
<td> Strongly disagree </td>
<td> {% formfield player.q_2_c %} </td>
<td> Strongly agree</td>
</tr>
<tr>
<td colspan=3> <b>d. The taste (if it is a food product) </b> can influence your choices of products to buy </td>
</tr>
<td> Strongly disagree </td>
<td> {% formfield player.q_22 %} </td>
<td> Strongly agree</td>
</tr>
<th colspan=3>e. Label influence: </th>
</tr>
<tr>
<td colspan=3>
&nbsp &nbsp &nbsp &nbsp &nbsp <b>* The organic label</b> can influence your choices of products to buy
<br> <b>* Organic label:</b>
<i> An organic product is a product from organic farming (it is an agricultural production
method that excludes the use of most synthetic chemicals, toxic products, etc.).
There is a label (AB) in France that authenticates products from this method of
agriculture. </i>
</td>
</tr>
<tr>
<td> &nbsp &nbsp &nbsp &nbsp Strongly disagree </td>
<td> {% formfield player.q_2_e_a %} </td>
<td> Strongly agree</td>
</tr>
<tr>
<td colspan=3>
&nbsp &nbsp &nbsp &nbsp &nbsp <b>* The ecological label</b> can influence your choices of products to buy
<br> <b>* Ecological label:</b>
<i> An ecological product is a product that will be thought out, designed,
packaged, distributed, recycled in such a way as to minimize the impact on the environment.
It must comply with many rules related to these steps during specifications drawn up by
an organization such as ECOLABEL or ECOCERT.
An ecological product must be designed with maximum respect for the environment
(respect linked to the use of raw materials and machines during manufacture).
The life cycle of the product as well as its recycling are also important points
to consider. </i>
</td>
</tr>
<tr>
<td> &nbsp &nbsp &nbsp &nbsp Strongly disagree </td>
<td> {% formfield player.q_2_e_b %} </td>
<td> Strongly agree</td>
</tr>
<tr>
<td colspan=3>
&nbsp &nbsp &nbsp &nbsp &nbsp <b>* The equitable trade label</b> can influence your choices of products to buy
<br> <b>* Equitable trade label: </b>
<i> Equitable trade is a commercial and international partnership, based on concrete principles and launched
almost 20 years ago. Its objective is to be able to guarantee a better balance between
producers and resellers, by ensuring better working conditions and better remuneration
for small producers. </i>
</tr>
<tr>
<td> &nbsp &nbsp &nbsp &nbsp Strongly disagree </td>
<td> {% formfield player.q_2_e_c %} </td>
<td> Strongly agree</td>
</tr>
</table>
<p>
&nbsp &nbsp &nbsp &nbsp &nbsp *
<b>Other label can influence your choices of
products to buy </b>(if yes, to indicate)
{% formfield player.q_2_h %}
</p>
<p>
<b> 3) Do you shop online ? </b>
{% formfield player.q_3 %}
</p>
<p>
<b> 4) Do you shop clothes online? </b>
{% formfield player.q_4 %}
</p>
<p>
<b>5)
Do you agree that it is less
environmentally friendly to shop online rather than in-store?
</b>
<table class='table text-left' style='width: auto; margin: auto'>
<tr>
<td> Strongly disagree </td>
<td> {% formfield player.q_5 %} </td>
<td> Strongly agree</td>
</tr>
</table>
</p>
<p>
<b>6) Do you bring your own cup of coffee (tea) to school/work (instead of using the
cups from the coffee machine)? </b>
{% formfield player.q_6 %}
</p>
<p>
<b>7) Do you sort your household waste? </b>
{% formfield player.q_7 %}
</p>
<p>
<b> 8) Do you use a compost bin? </b>
{% formfield player.q_8 %}
</p>
<p>
<b>9) Do you collect and recycle used paper? </b>
{% formfield player.q_9 %}
</p>
<p>
<b>10) Do you reuse your shopping bags? </b>
{% formfield player.q_10 %}
</p>
<p>
<b>11) Do you return used batteries to appropriate recycling points? </b>
{% formfield player.q_11 %}
</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';
}
</script>
{% endblock %}