{% extends "global/Page.html" %}
{% load staticfiles otree %}
{% load i18n %}
{# ****************************************************************************************************************** #}
{# *** STYLES *** #}
{# ****************************************************************************************************************** #}
{% block styles %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** TITLE *** #}
{# ****************************************************************************************************************** #}
{% block title %}
{% endblock %}
{# ****************************************************************************************************************** #}
{# *** CONTENT *** #}
{# ***************************************************************************************************************** #}
{% block content %}
{% if option_to_pay == "A" and payoff == 0 %}
{% blocktrans trimmed with payoff=payoff %}
Your coin came up tails and your payment has been recorded.
{% endblocktrans %}
{% elif option_to_pay == "A" and payoff != 0 %}
{% blocktrans trimmed with payoff=payoff %}
Your coin came up heads and your payment has been recorded.
{% endblocktrans %}
{% endif %}
{% if option_to_pay != "A" %}
Please click next to continue
{% endif %}
{% next_button %}
{% endblock %}