{% extends "base.html" %} {% block body %}

Stackexchange-Quiz

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 %}