{% extends "global/Page.html" %}
{% load otree %}
{% block title %}Training Round: Getting Points{% endblock %}
{% block content %}
In traning round {{subsession.round_number}}, you visited site {{player.next_site}}. {% if player.payoff == 1 %} You caught the rhion there, so you get 1 point. {% endif %} {% if player.payoff == -1 %} You were caught by the ranger, so you get -1 point. {% endif %} {% if player.payoff == 0 %} There was no rhion and fortunately the ranger went somewhere else, so you get 0 points. {% endif %} You currently have {{participant.payoff}} altogether.
{% next_button %}
{% endblock %}