WyR/templates/results.html

24 lines
378 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Results</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>{{ question[1] }}</h1>
<h2>{{ question[2] }}</h2>
<p>{{ percent_a }}% ({{ votes_a }} votes)</p>
<h2>{{ question[3] }}</h2>
<p>{{ percent_b }}% ({{ votes_b }} votes)</p>
<hr>
<p>Total votes: {{ total }}</p>
<a href="/">Back</a>
</body>
</html>