{% extends "global/Page.html" %} {% load otree static %} {% block title %} Job Search -- Final Payoff {% endblock %} {% block content %}

Your draw is {{ player.drawrandom }}. According to your draw, your final payoff is the underlying points below:

Your total earning so far in 1st Trial: {% if player.drawrandom == 1 %} {{ player.participant.vars.totalEarnings }}.laughing {% else %} {{ player.participant.vars.totalEarnings }}. {% endif %} Your total earning so far in 2nd Trial: {% if player.drawrandom == 2 %} {{ player.participant.vars.totalEarnings_2 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_2 }}. {% endif %}

Your total earning so far in 3rd Trial: {% if player.drawrandom == 3 %} {{ player.participant.vars.totalEarnings_3 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_3 }}. {% endif %} Your total earning so far in 4th Trial: {% if player.drawrandom == 4 %} {{ player.participant.vars.totalEarnings_4 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_4 }}. {% endif %}

Your total earning so far in 5th Trial: {% if player.drawrandom == 5 %} {{ player.participant.vars.totalEarnings_5 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_5 }}. {% endif %} Your total earning so far in 6th Trial: {% if player.drawrandom == 6 %} {{ player.participant.vars.totalEarnings_6 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_6 }}. {% endif %}

Your total earning so far in 7th Trial: {% if player.drawrandom == 7 %} {{ player.participant.vars.totalEarnings_7 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_7 }}. {% endif %} Your total earning so far in 8th Trial: {% if player.drawrandom == 8 %} {{ player.participant.vars.totalEarnings_8 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_8 }}. {% endif %}

Your total earning so far in 9th Trial: {% if player.drawrandom == 9 %} {{ player.participant.vars.totalEarnings_9 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_9 }}. {% endif %} Your total earning so far in 10th Trial: {% if player.drawrandom == 10 %} {{ player.participant.vars.totalEarnings_10 }}.laughing {% else %} {{ player.participant.vars.totalEarnings_10 }}. {% endif %}


{% formfields %}
{% endblock %}