Test_Johanne/dictator_modif_class_v2/templates/dictator_modif_class_v2/NextPage.html
2025-03-06 10:33:03 +01:00

24 lines
303 B
HTML

{% extends "global/Page.html" %}
{% load otree %}
{% block title %}
Round: {{round}}
{% endblock %}
{% block content %}
{% if round == 1 %}
<h4> Start the first round</h4>
{% else %}
<h4> Go to the next round</h4>
{% endif %}
<p>{% next_button %}</p>
{% endblock %}