29 lines
300 B
HTML
29 lines
300 B
HTML
{% load otree %}
|
|
|
|
{% block title %}
|
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="card bg-light m-3">
|
|
<div class="card-body">
|
|
|
|
|
|
<p>
|
|
<h3>
|
|
Please click on the "Next" button to go to the next step
|
|
</h3>
|
|
|
|
</p>
|
|
|
|
|
|
<p>{% next_button %}</p>
|
|
|
|
</div></div>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|