{% extends "global/Base.html" %}
{% load staticfiles otree_tags %}
{% block title %}
Your result
{% endblock %}
{% block content %}
{% if player.payoff == 0 %}
You did not solve any of the tasks correctly.
{% endif %}
{% if player.payoff > 0 %}
You have solved {{ player.correct_answers }} tasks correctly.
{% endif %}
{% next_button %}
{% endblock %}