{% load staticfiles %} {{ settings.title }}

{{ settings.title }}

Welcome to the statistic backend!


Users

{% for user in users %} {% endfor %}
name questions answered last seen url (click to copy)
{{ user.name }} {{ user.questions_answered }} {{ user.last_seen }}

Questions

{% for question in questions %} {% endfor %}
title answers correct correct percentage
{{ question.title }} {{ question.answers }} {{ question.correct_answers }} {{ question.correct_answers_percentage }}