{% extends 'courseinfo/base.html' %} {% block title %} Student - {{ student }} {% endblock %} {% block content %}

{{ student }}

{% if student.disambiguator %} {% endif %}
First Name: {{ student.first_name }}
Last Name: {{ student.last_name }}
Disambiguator: {{ student.disambiguator }}

Registrations

    {% for registration in registration_list %}
  • {{ registration.section }}
  • {% empty %}
  • This student is not currently registered for any sections.
  • {% endfor %}
{% endblock %}