{{ block title }} {{ endblock }} {{ block content }}

Round {{ round }} out of 14

Stage 1: Summary of rock-paper-scissors game

• You chose {{ your }}

• The other participant chose {{ other }}

{{ if your == 'Rock' and other == 'Scissors' }}

• You won the game

{{ elif your == 'Paper' and other == 'Rock' }}

• You won the game

{{ elif your == 'Scissors' and other == 'Paper' }}

• You won the game

{{ elif your == 'Rock' and other == 'Paper' }}

• The other participant won the game

{{ elif your == 'Paper' and other == 'Scissors' }}

• The other participant won the game

{{ elif your == 'Scissors' and other == 'Rock' }}

• The other participant won the game

{{ elif your == 'Rock' and other == 'Rock' and player.win == True }}

You both have tied for 3 times, a coin flip decided you have the advantage.

{{ elif your == 'Rock' and other == 'Rock' and player.win == False }}

You both have tied for 3 times, a coin flip decided the other participant has the advantage.

{{ elif your == 'Paper' and other == 'Paper' and player.win == True }}

You both have tied for 3 times, a coin flip decided you have the advantage.

{{ elif your == 'Paper' and other == 'Paper' and player.win == False }}

You both have tied for 3 times, a coin flip decided the other participant has the advantage.

{{ elif your == 'Scissors' and other == 'Scissors' and player.win == True }}

You both have tied for 3 times, a coin flip decided you have the advantage.

{{ elif your == 'Scissors' and other == 'Scissors' and player.win == False }}

You both have tied for 3 times, a coin flip decided the other participant has the advantage.

{{ endif }}
{{ endblock }}