{% extends "global/Page.html" %} {% load otree static %} {% block title %} Part 3: Choice tasks {% endblock %} {% block content %} In each of the hypothetical situations below please decide what would you do as if the situation is real.

WORK SETTING: Suppose, your employer pays you {% if player.wagerate > 20 %} {{ player.wagerate }} {% else %} $20 {% endif %} per hour. {% if player.workpref == 1 and player.smoke >= 2 %} The employer does not allow smoking at work, but a competing firm does and offers you ${{ player.wagecut }} per hour. {% elif player.workpref == 0 and player.smoke < 2 %} The employer does not allow smoking at work, but a competing firm does and offers you ${{ player.wagecut }} per hour. {% else %} Smoking at work is allowed, and every day you are exposed to it. A competing firm bans smoking at worksite and offers you ${{ player.wagecut }} per hour. {% endif %} Assuming otherwise similar work conditions, would you accept the offer or not? {% formfield 'choicework' %}

BAR/NIGHTCLUB SETTING: Suppose you have left your car at home and come to your favorite {{ if player.workpref == 1 and player.smoke >= 2 }} bar/nightclub that has allowed smoking till now. However, you just discover that it is smoke-free from now on, and to reach the closest bar/nightclub that allows smoking, you need to spend ${{player.taxi}} on a taxi ride. {{ elif player.workpref == 0 and player.smoke < 2 }} bar/nightclub that has allowed smoking till now. However, you just discover that it is smoke-free from now on, and to reach the closest bar/nightclub that allows smoking, you need to spend ${{player.taxi}} on a taxi ride. {{ else }} smoke-free bar/nightclub, discover it allows smoking from now on, and see several smokers inside. To reach the closest smoke-free bar/nightclub, you need to spend ${{player.taxi}} on a taxi ride. {{ endif }} Would you stay here, or take a taxi cab? {% formfield 'choicebar' %}

RESTAURANT SETTING: {{ if player.workpref == 1 and player.smoke >= 2 }} Suppose you drive to your favorite eating place that has allowed smoking till now, and discover it has just become smoke-free. Driving to the closest restaurant that allows smoking takes {{player.ride}} minutes. {{ elif player.workpref == 0 and player.smoke < 2 }} Suppose you drive to your favorite eating place that has allowed smoking till now, and discover it has just become smoke-free. Driving to the closest restaurant that allows smoking takes {{player.ride}} minutes. {{ else }} Suppose you drive to your favorite smoke-free eatery, discover it allows smoking from now on, and see several smokers inside. Driving to the closest smoke-free restaurant takes {{player.ride}} minutes. {{ endif }} Would you eat here, or drive ? {% formfield 'choiceeat' %}

{% endblock %}