WyR/app/templates/public/results.html

38 lines
887 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Results</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<main class="page">
<nav class="site-nav">
<a href="{{ url_for('public.home') }}">Vote</a>
<a href="{{ url_for('admin.dashboard') }}">Admin</a>
</nav>
{% if question %}
<h1>{{ question.question }}</h1>
<h2>{{ question.option_a }}</h2>
<p>{{ percent_a }}% ({{ votes_a }} votes)</p>
<h2>{{ question.option_b }}</h2>
<p>{{ percent_b }}% ({{ votes_b }} votes)</p>
<hr>
<p>Total votes: {{ total }}</p>
<a href="{{ url_for('public.home') }}">Back</a>
{% else %}
<h1>No results yet.</h1>
<p>No question is scheduled yet.</p>
<a href="{{ url_for('public.home') }}">Back</a>
{% endif %}
</main>
</body>
</html>