blob: 68673a78fd5460965ba646ea74cc3aa0ac90090e [file]
<!DOCTYPE html>
<html>
<head>
<title>Docker tutorial stats</title>
</head>
<body>
<h3>General numbers</h3>
<ul>
<li>{{ users.started }} sessions</li>
<li>{{ users.completed }} completed
</li>
</ul>
<h3>How far did people get?</h3>
<ol start="0">
{% for question, number in answered.items %}
<li><div style="width: {{number}}px; background-color: #008BB8">{{ number }}</div> </li>
{% endfor %}
</ol>
<h3>How many people check for the answer, and which?</h3>
<ol start="0">
{% for question, number in peeks.items %}
<li><div style="width: {{number}}px; background-color: #008BB8">{{ number }}</div></li>
{% endfor %}
</ol>
</body>
</html>