{% extends "global/Page.html" %}
{% load staticfiles otree_tags %}
{% block title %}
Your answers
{% endblock %}
{% block content %}
Your name is {{ player.name }}, you are {{ player.age }} years old.
{% if player.student %}
You are a student
{% else %}
You are not a student
{% endif %}
{% next_button %}
{% endblock %}