1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-19 15:53:45 +02:00
se-simulator/templates/quiz.html
2018-03-30 22:42:38 +02:00

67 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block body %}
<header>
<h1>Stackexchange-Quiz</h1>
</header>
{% if difficulty=="easy" %}
<div id="quizchoices" data-id="{{ question.id }}">
{% for choice in choices %}
<button data-id="{{ choice.id }}" data-url="{{ choice.url }}"
style="color: {{ choice.tag_foreground_color }};background-color: {{ choice.tag_background_color }}"
>{{ choice.name }}</button>
{% endfor %}
</div>
{% else %}
<div id="quizselector">
<input title="guess the correct site" id="siteselector" data-mode="quiz" data-id="{{ question.id }}"
autocomplete='off'>
<button id="check">Check</button>
</div>
{% endif %}
<div id="result">
<div id="correct">
Correct!
</div>
<div id="incorrect">
Incorrect!
</div>
</div>
<div id="stats">
<div>Total<br><span>{{ stats.total }}</span></div>
<div>Correct<br><span>{{ stats.correct }}</span></div>
<div>Ratio<br><span>{{ '%d' | format((stats.correct / stats.total * 100) if stats.correct > 0 else 0) }}</span>%
</div>
<button id="retry">Retry</button>
</div>
<header class="siteheader"
style="">
</header>
<h1>{{ question.title.text }}</h1>
<div class="content question">
<div class="vote" data-id="{{ question.id }}" data-type="question">
<a class="up"></a>
<div>{{ question.upvotes - question.downvotes }}</div>
<a class="down"></a>
</div>
<div class="contentbox">
{% for paragraph in question.text.split("\n") %}
<p>{{ paragraph }}</p>
{% endfor %}
<div class="contentfooter">
<div class="authorbox">
asked {{ prettydate(question.datetime) }}
<br>
{{ question.user.username }}
</div>
</div>
</div>
</div>
{% endblock %}