{% extends "global/Page.html" %} {% load otree static %} {% block title %} Final choice of cells {% endblock %} {% block content%}
Remember: you need to make {{Constants.num_choices}} choices.

You have chosen:

    {% if player.choice_counter > 0%} {% if player.row_choice_1 != 0 and player.col_choice_1 != 0%}
  1. row {{ player.row_choice_1}} and column {{ player.col_choice_1}}
  2. {% elif player.row_choice_1 == 0 and player.col_choice_1 != 0%}
  3. average row and column {{ player.col_choice_1}}
  4. {% elif player.row_choice_1 != 0 and player.col_choice_1 == 0%}
  5. row {{player.row_choice_1}} and average column
  6. {% else %}
  7. average row and average column
  8. {% endif %} {% endif %} {% if player.choice_counter > 1 %} {% if player.row_choice_2 != 0 and player.col_choice_2 != 0%}
  9. row {{ player.row_choice_2}} and column {{ player.col_choice_2}}
  10. {% elif player.row_choice_2 == 0 and player.col_choice_2 != 0%}
  11. average row and column {{ player.col_choice_2}}
  12. {% elif player.row_choice_2 != 0 and player.col_choice_2 == 0%}
  13. row {{player.row_choice_2}} and average column
  14. {% else %}
  15. average row and average column
  16. {% endif %} {% endif %} {% if player.choice_counter > 2 %} {% if player.row_choice_3 != 0 and player.col_choice_3 != 0%}
  17. row {{ player.row_choice_3}} and column {{ player.col_choice_3}}
  18. {% elif player.row_choice_3 == 0 and player.col_choice_3 != 0%}
  19. average row and column {{ player.col_choice_3}}
  20. {% elif player.row_choice_3 != 0 and player.col_choice_3 == 0%}
  21. row {{player.row_choice_3}} and average column
  22. {% else %}
  23. average row and average column
  24. {% endif %} {% endif %} {% if player.choice_counter > 3 %} {% if player.row_choice_4 != 0 and player.col_choice_4 != 0%}
  25. row {{ player.row_choice_4}} and column {{ player.col_choice_4}}
  26. {% elif player.row_choice_4 == 0 and player.col_choice_4 != 0%}
  27. average row and column {{ player.col_choice_4}}
  28. {% elif player.row_choice_4 != 0 and player.col_choice_4 == 0%}
  29. row {{player.row_choice_4}} and average column
  30. {% else %}
  31. average row and average column
  32. {% endif %} {% endif %} {% if player.choice_counter > 4 %} {% if player.row_choice_5 != 0 and player.col_choice_5 != 0%}
  33. row {{ player.row_choice_5}} and column {{ player.col_choice_5}}
  34. {% elif player.row_choice_5 == 0 and player.col_choice_5 != 0%}
  35. average row and column {{ player.col_choice_5}}
  36. {% elif player.row_choice_5 != 0 and player.col_choice_5 == 0%}
  37. row {{player.row_choice_5}} and average column
  38. {% else %}
  39. average row and average column
  40. {% endif %} {% endif %} {% if player.choice_counter > 5 %} {% if player.row_choice_6 != 0 and player.col_choice_6 != 0%}
  41. row {{ player.row_choice_6}} and column {{ player.col_choice_6}}
  42. {% elif player.row_choice_6 == 0 and player.col_choice_6 != 0%}
  43. average row and column {{ player.col_choice_6}}
  44. {% elif player.row_choice_6 != 0 and player.col_choice_6 == 0%}
  45. row {{player.row_choice_6}} and average column
  46. {% else %}
  47. average row and average column
  48. {% endif %} {% endif %} {% if player.choice_counter > 6 %} {% if player.row_choice_7 != 0 and player.col_choice_7 != 0%}
  49. row {{ player.row_choice_7}} and column {{ player.col_choice_7}}
  50. {% elif player.row_choice_7 == 0 and player.col_choice_7 != 0%}
  51. average row and column {{ player.col_choice_7}}
  52. {% elif player.row_choice_7 != 0 and player.col_choice_7 == 0%}
  53. row {{player.row_choice_7}} and average column
  54. {% else %}
  55. average row and average column
  56. {% endif %} {% endif %} {% if player.choice_counter > 7 %} {% if player.row_choice_8 != 0 and player.col_choice_8 != 0%}
  57. row {{ player.row_choice_8}} and column {{ player.col_choice_8}}
  58. {% elif player.row_choice_8 == 0 and player.col_choice_8 != 0%}
  59. average row and column {{ player.col_choice_8}}
  60. {% elif player.row_choice_8 != 0 and player.col_choice_8 == 0%}
  61. row {{player.row_choice_8}} and average column
  62. {% else %}
  63. average row and average column
  64. {% endif %} {% endif %} {% if player.choice_counter > 8 %} {% if player.row_choice_9 != 0 and player.col_choice_9 != 0%}
  65. row {{ player.row_choice_9}} and column {{ player.col_choice_9}}
  66. {% elif player.row_choice_9 == 0 and player.col_choice_9 != 0%}
  67. average row and column {{ player.col_choice_9}}
  68. {% elif player.row_choice_9 != 0 and player.col_choice_9 == 0%}
  69. row {{player.row_choice_9}} and average column
  70. {% else %}
  71. average row and average column
  72. {% endif %} {% endif %}
{% if player.row_choice == 0 and player.column_choice == 0 %}

Warning: You have chosen average row and avergae column together. This would generate payoff 0 for sure!

{% endif %} {% next_button %} {% endblock %} {% block styles %} {% endblock %}