{% extends "global/Page.html" %}
{% load otree %}
{% block title %}Poaching Game 1: Getting Points{% endblock %}
{% block content %}
In round {{subsession.round_number}}, you visited site {{player.poacher_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 rhino and fortunately the ranger went somewhere else, so you get 0 points. {% endif %} You currently have {{participant.payoff}} altogether and your current bonus is ${{player.get_bonus}}.
{% next_button %}
{% endblock %}