{% extends "base.html" %} {% block title %}{{ group_name }} - Jupyter Classroom{% endblock %} {% block content %}

{{ group_name }}

Teacher: {{ teacher }}

{% if students %} {% for s in students %} {% endfor %}
Email Status Last Activity Actions
{{ s.username }} {{ s.status }} {{ s.last_activity or "—" }} {% if s.status == "stopped" %}
{% else %} Join
{% endif %}
{% else %}

No students in this classroom yet.

{% endif %}

Add Student

{% endblock %}