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

72 lines
2.3 KiB
HTML
Raw Normal View History

2018-03-27 20:41:57 +02:00
{% extends "base.html" %}
2018-04-02 19:12:35 +02:00
{% block title %}
Stackexchange Simulator Quiz - {{ question.title.text }}
{% endblock %}
2018-03-27 20:41:57 +02:00
{% block body %}
2018-03-28 15:01:16 +02:00
<header>
2018-04-02 19:12:35 +02:00
<h1>Stackexchange Simulator Quiz</h1>
2018-03-28 15:01:16 +02:00
</header>
2018-03-30 22:42:38 +02:00
{% if difficulty=="easy" %}
<div id="quizchoices" data-id="{{ question.id }}">
{% for choice in choices %}
<button data-id="{{ choice.id }}" data-url="{{ choice.url }}"
2018-04-05 21:01:06 +02:00
style="color: {{ choice.foreground_color }};background-color: {{ choice.background_color }};
{{ ("border: solid 1px " + choice.foreground_color) if choice.background_color and is_light_color(choice.background_color) }}"
2018-03-30 22:42:38 +02:00
>{{ 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 %}
2018-03-28 15:01:16 +02:00
<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>
2018-03-30 22:42:38 +02:00
<div>Ratio<br><span>{{ '%d' | format((stats.correct / stats.total * 100) if stats.correct > 0 else 0) }}</span>%
</div>
2018-04-04 17:40:22 +02:00
<button id="next">Next</button>
2018-03-28 15:01:16 +02:00
</div>
<header class="siteheader"
style="">
</header>
2018-03-27 20:41:57 +02:00
<h1>{{ question.title.text }}</h1>
<div class="content question">
2018-03-28 15:01:16 +02:00
<div class="vote" data-id="{{ question.id }}" data-type="question">
2018-03-27 20:41:57 +02:00
<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 %}