35 lines
871 B
HTML
35 lines
871 B
HTML
{% extends "layout.html" %}
|
|
{% block body %}
|
|
<h1>aBot!</h1>
|
|
<div class=thankyou>
|
|
Thank you for the vote!
|
|
</div>
|
|
{% if summary %}
|
|
<h3>Current report</h3>
|
|
|
|
<div id="questions">
|
|
{% for qa_item in qa %}
|
|
<div class = "question autoformat">
|
|
<h2>{{ qa_item[0]|safe }}</h2>
|
|
<ul>
|
|
{% for answer in qa_item[1] %}
|
|
{% if answer.answer_type == "single" %}
|
|
<li class = "summary_single">{{ answer.answer }}: {{ answer.count }} ({{ answer.percent }}%)
|
|
{% endif %}
|
|
{% if answer.answer_type == "multiple" %}
|
|
<li class = "summary_multiple">{{ answer.answer }}: {{ answer.count }} ({{ answer.percent }}%)
|
|
{% endif %}
|
|
{% if answer.answer_type == "open" %}
|
|
<li class = "summary_open">"{{ answer.answer }}"
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
|
|
{% endfor %}
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|