2022-05-26 10:27:26 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
2022-05-27 10:08:25 +02:00
|
|
|
<h2>{{ _('Let\'s see how you performed') }}</h2>
|
2022-05-26 10:27:26 +02:00
|
|
|
<p>{{ message }}</p>
|
2022-05-27 10:08:25 +02:00
|
|
|
<p>{{ _('It was ') + question["species"] + '!' }}</p>
|
2022-05-26 13:58:46 +02:00
|
|
|
<p>
|
|
|
|
<a href="/game/new">{{ _('New Question') }}</a>
|
|
|
|
</p>
|
2022-05-26 10:27:26 +02:00
|
|
|
{% endblock %}
|