{% extends 'game/base.html' %} {% load static %} {% load i18n %} {% block title %}Code for Life - Rapid Router - Level moderation{% endblock %} {% block scripts %} {{block.super}} {% endblock %} {% block css %} {{block.super}} {% endblock %} {% block nav_ocargo_moderate %} {% trans "Moderate" %} {% endblock nav_ocargo_moderate %} {% block content %}

{% trans "Level moderation" %}


{% trans "Filter levels" %}


{% trans "Filter the levels by class and student, and click 'Submit' to see the student's levels." %}

{% csrf_token %}
{{form.classes.errors}} {{form.classes}}
{{form.students.errors}} {{form.students}}

{% if levelData %}
{% if thead %} {% for header in thead %} {% endfor %} {% for level in levelData %} {% endfor %}
{{header}}
{{level.student}} {{level.name}} {{level.shared_with}}
{% endif %}
{% else %} {% if thead %}

{% trans "No levels found." %}

{% else %}

{% trans "Select a class and student to view their created levels." %}

{% endif %} {% endif %}
{% endblock %}