23 lines
270 B
HTML
23 lines
270 B
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 %}
|