{% extends "global/Page.html" %}
{% load otree %}
{% block styles %}
{% endblock %}
{% block scripts %}
{% endblock %}
{% block title %}
Instructions
{% endblock %}
{% block content %}
{% if player.part == 0 %}
{% include 'impact_beliefs/SliderInstructions.html' %}
{% elif player.part == 1 %}
{% include 'impact_beliefs/BeliefInstructions1.html' %}
{% elif player.part == 2 %}
{% include 'impact_beliefs/DonationInstructions1.html' %}
{% elif player.part == 3 %}
{% include 'impact_beliefs/BeliefInstructions2.html' %}
{% elif player.part == 4 %}
{% include 'impact_beliefs/DonationInstructions2.html' %}
{% endif %}
{% endblock %}