{% extends 'game/base.html' %} {% block title %}Students{% endblock %} {% block css %} {{block.super}} {% endblock %} {% block content %}
{% if currentClass %}

Currently looking at class: {{currentClass}}

{% endif %}

{{message}}

{% if classes %}
{% csrf_token %}
{% endif %} {% if studentData %} {% for header in thead %} {% endfor %} {% for row in studentData %} {% endfor %}
{{header}}
{{row.0.user.user.first_name}} {{row.0.user.user.last_name}} {{row.1}} {{row.2}} {{row.3.id}} {{row.3.score}} {{row.4.id}} {{row.4.score}}
{% else %}
Nobody to show.
{% endif %}
{% endblock %}