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

{{ student }}

First Name

{{ student.first_name }}

Last Name

{{ student.last_name }}

{% if student.nickname %}

Nickname

{{ student.nickname }}

{% endif %}

Sections

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