{{ block title }} {{ endblock }} {{ block content }}
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 7 times, a coin flip decided you have the advantage.
{{ elif your == 'Rock' and other == 'Rock' and player.win == False }}You both have tied for 7 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 7 times, a coin flip decided you have the advantage.
{{ elif your == 'Paper' and other == 'Paper' and player.win == False }}You both have tied for 7 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 7 times, a coin flip decided you have the advantage.
{{ elif your == 'Scissors' and other == 'Scissors' and player.win == False }}You both have tied for 7 times, a coin flip decided the other participant has the advantage.
{{ endif }}