24 lines
303 B
HTML
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 %}
|