30 lines
345 B
HTML
30 lines
345 B
HTML
![]() |
{% extends "global/Page.html" %}
|
||
|
{% load otree %}
|
||
|
|
||
|
{% block title %}
|
||
|
|
||
|
First part : End
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="card bg-light m-3">
|
||
|
<div class="card-body">
|
||
|
|
||
|
|
||
|
<p>
|
||
|
You have completed the first part.
|
||
|
|
||
|
<br> You will now begin the second part.
|
||
|
|
||
|
</p>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<p>{% next_button %}</p>
|
||
|
|
||
|
|
||
|
{% endblock %}
|