{% extends "base.html" %} {% block title %} Stackexchange Simulator Quiz - {{ question.title.text }} {% endblock %} {% block body %}

Stackexchange Simulator Quiz

{% if difficulty=="easy" %}
{% for choice in choices %} {% endfor %}
{% else %}
{% endif %}
Correct!
Incorrect!
Total
{{ stats.total }}
Correct
{{ stats.correct }}
Ratio
{{ '%d' | format((stats.correct / stats.total * 100) if stats.correct > 0 else 0) }}%

{{ question.title.text }}

{{ question.upvotes - question.downvotes }}
{% for paragraph in question.text.split("\n") %}

{{ paragraph }}

{% endfor %}
{% endblock %}